pschelpdesk/FastBill/Models/Settings.cs
2024-11-15 21:56:49 +01:00

7 lines
165 B
C#

namespace FastBill.Models;
public class Settings
{
public string EMail { get; set; } = string.Empty;
public string ApiKey { get; set; } = string.Empty;
}