コード例 #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
ファイル: Profile.cs プロジェクト: pstagner/FTPbox
 public void Clear()
 {
     Account = new Account();
     Paths = new Paths();
 }
コード例 #3
0
ファイル: Profile.cs プロジェクト: pstagner/FTPbox
 public Profile()
 {
     Account = new Account();
     Paths = new Paths();
 }