9 lines
244 B
C#
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>();
|
|
} |