Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 1234567891011121314 |
- namespace Diligent.WebAPI.Data.Entities
- {
- public class Request : BaseMongo
- {
- public string SenderId { get; set; }
- public string SenderUsername { get; set; }
- //public bool Accepted { get; set; }
-
- // in case we would need another type of request
- //public string Type { get; set; }
- public string RoomId { get; set; }
- public string RoomName { get; set; }
- }
- }
|