fisr commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using MongoDB.Bson.Serialization.Attributes;
|
||||
using MongoDB.Bson;
|
||||
using YandexGameServer.Services;
|
||||
|
||||
namespace YandexGameServer.Models
|
||||
{
|
||||
[Serializable]
|
||||
public class CityUniqueCode
|
||||
{
|
||||
[BsonId, BsonRepresentation(BsonType.ObjectId)]
|
||||
public string id { get; set; }
|
||||
public Cities cityEnum { get; set; }
|
||||
public string city { get; set; }
|
||||
public int key { get; set; }
|
||||
public int adminKey { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user