9 lines
197 B
C#
9 lines
197 B
C#
namespace Api.Settings
|
|
{
|
|
public sealed class ContactSettings
|
|
{
|
|
public string ToEmail { get; set; } = "";
|
|
public string SubjectPrefix { get; set; } = "[Contact]";
|
|
}
|
|
}
|