MailSharp / MailSharp.Common / PortConfig.cs
Code · 8 lines · 188 bytes
1
2
3
4
5
6
7
8namespace MailSharp.Common;

public class PortConfig
{
	public string Host { get; set; } = "127.0.01";
	public int Port { get; set; } = 25;
	public SecurityEnum Security { get; set; }
}