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

// User configuration model for JSON file
public class UserConfig
{
	public string? Username { get; set; }
	public string? Password { get; set; }
}