pschelpdesk/FastBill/Models/Settings.cs
2024-11-19 20:16:45 +01:00

9 lines
244 B
C#

namespace FastBill.Models;
public class Settings
{
public string EMail { get; set; } = string.Empty;
public string ApiKey { get; set; } = string.Empty;
public List<Customer> Customers { get; set; } = new List<Customer>();
}