namespace ln.tools.mailpdfextract; public class ImapCredentials { public string Hostname { get; set; } = "localhost"; public int Port { get; set; } = 143; public string User { get; set; } = "nobody"; public string Password { get; set; } = ""; }