using System; using System.Collections.Generic; using System.Text; namespace WmHmailserverExporter { public class MailAccount { protected int id; protected string username; protected string password; public int Id { get { return id; } set { id = value; } } public string Username { get { return username; } set { username = value; } } public string Password { get { return password; } set { password = value; } } } }