Exemplo n.º 1
0
 public RoomPresent(Guid id, string name, int userCount, PrivacyRoomType privacy, int peopleCountLimit)
 {
     Id             = id;
     Name           = name;
     UsersCount     = userCount;
     PrivacyType    = privacy;
     MaxPeopleCount = peopleCountLimit;
 }
Exemplo n.º 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();
 }