fisr commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using MongoDB.Bson;
|
||||
using MongoDB.Bson.Serialization.Attributes;
|
||||
using YandexGameServer.Controllers;
|
||||
using YandexGameServer.Services;
|
||||
|
||||
namespace YandexGameServer.Models
|
||||
{
|
||||
[Serializable]
|
||||
public class Client
|
||||
{
|
||||
[BsonId, BsonRepresentation(BsonType.ObjectId)]
|
||||
public string id { get; set; }
|
||||
public Cities city { get; set; }
|
||||
public List<Games> games { get; set; } = new List<Games>();
|
||||
public DateTime? gameFinishedDate { get; set; }
|
||||
public bool isAdmin { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user