16 lines
381 B
C#
16 lines
381 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BusinessLogic.Tools.Mail
|
|
{
|
|
public class MailOptions
|
|
{
|
|
public string Email { get; set; } = null!;
|
|
public string Password { get; set; } = null!;
|
|
public string SmtpClientHost { get; set; } = null!;
|
|
public short SmtpClientPort { get; set; }
|
|
}
|
|
} |