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