Esempio n. 1
0
 public FriendsList(User owner)
 {
     this.owner = owner;
     UserIds = new List<int>();
     Usernames = new List<string>();
     Nicks = new List<string>();
 }
Esempio n. 2
0
 public FriendsSessionAssign(User owner)
 {
     this.owner = owner;
     UserIds = new List<int>();
     SessionIds = new List<Guid>();
 }