9 lines
250 B
C#
9 lines
250 B
C#
|
|
namespace Service.AppSettingModel;
|
|||
|
|
|
|||
|
|
public class NotificationSettings
|
|||
|
|
{
|
|||
|
|
public string Subject { get; set; } = string.Empty;
|
|||
|
|
public string PublicKey { get; set; } = string.Empty;
|
|||
|
|
public string PrivateKey { get; set; } = string.Empty;
|
|||
|
|
}
|