예제 #1
0
 public RoomPresent(Guid id, string name, int userCount, PrivacyRoomType privacy, int peopleCountLimit)
 {
     Id             = id;
     Name           = name;
     UsersCount     = userCount;
     PrivacyType    = privacy;
     MaxPeopleCount = peopleCountLimit;
 }
예제 #2
0
 public RoomPresent(Guid id, string name, int userCount, PrivacyRoomType privacy, int peopleCountLimit, IEnumerable <PersonPresent> users)
 {
     Id             = id;
     Name           = name;
     UsersCount     = userCount;
     PrivacyType    = privacy;
     MaxPeopleCount = peopleCountLimit;
     Users          = users.ToList();
 }