15 lines
294 B
C#
15 lines
294 B
C#
using YLErp.MailKit;
|
|
|
|
namespace YLErp.Modules.AppModule
|
|
{
|
|
public class SmtpConfigExt : SmtpConfig
|
|
{
|
|
public IEnumerable<SmtpConfig> OtherUsers { get; set; }
|
|
|
|
public SmtpConfigExt Clone()
|
|
{
|
|
return (SmtpConfigExt)MemberwiseClone();
|
|
}
|
|
}
|
|
}
|