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