예제 #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();
 }