Ejemplo n.º 1
0
	    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);
	    }
Ejemplo n.º 2
0
 public void Clear()
 {
     Account = new Account();
     Paths = new Paths();
 }
Ejemplo n.º 3
0
 public Profile()
 {
     Account = new Account();
     Paths = new Paths();
 }