7 lines
165 B
C#
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;
|
|
} |