You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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