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ů.

Request.cs 426B

1234567891011121314
  1. namespace Diligent.WebAPI.Data.Entities
  2. {
  3. public class Request : BaseMongo
  4. {
  5. public string SenderId { get; set; }
  6. public string SenderUsername { get; set; }
  7. //public bool Accepted { get; set; }
  8. // in case we would need another type of request
  9. //public string Type { get; set; }
  10. public string RoomId { get; set; }
  11. public string RoomName { get; set; }
  12. }
  13. }