public void AddAccount(string host, string user, string pass, int port) { Account = new Account { Host = host, Username = user, Password = pass, Port = port }; Console.WriteLine("Added to profile: {0}@{1}:{2}", user, host, port); }
public void Clear() { Account = new Account(); Paths = new Paths(); }
public Profile() { Account = new Account(); Paths = new Paths(); }