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