예제 #1
0
파일: NodeAuth.cs 프로젝트: aggrata/MCloud
 public NodeAuth(NodeAuthType type, string username, string secret)
 {
     Type = type;
     Secret = secret;
     UserName = username;
 }
예제 #2
0
파일: NodeAuth.cs 프로젝트: aggrata/MCloud
 public NodeAuth(NodeAuthType type, string secret)
     : this(type, DefaultUserName, secret)
 {
 }