コード例 #1
0
ファイル: user.cs プロジェクト: ThisIsRandom/shoop
 public User(IUserProps props)
 {
     this.username = props.username;
     this.id       = props.id;
 }
コード例 #2
0
 public IUser create(IUserProps props)
 {
     return(new User(props));
 }