8 lines
196 B
C#
8 lines
196 B
C#
namespace StandManager.Domain.DTO;
|
|
|
|
public class EmailConfig
|
|
{
|
|
public string From { get; set; }
|
|
public string ServerAddress { get; set; }
|
|
public string MailSplitChar { get; set; }
|
|
} |