示例#1
0
文件: Profile.cs 项目: bakern/FTPbox
	    public void AddPaths(string remote, string local, string http)
	    {
            Paths = new Paths
            {
                Remote = remote,
	            Local = local, 
	            Parent = http
            };
	    }
示例#2
0
 public void Clear()
 {
     Account = new Account();
     Paths = new Paths();
 }
示例#3
0
 public Profile()
 {
     Account = new Account();
     Paths = new Paths();
 }