17 lines
451 B
C#
17 lines
451 B
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
using MongoDB.Bson;
|
|
using YandexGameServer.Services;
|
|
using YandexGameServer.Controllers;
|
|
|
|
namespace YandexGameServer.Models
|
|
{
|
|
[Serializable]
|
|
public class Tag
|
|
{
|
|
[BsonId, BsonRepresentation(BsonType.ObjectId)]
|
|
public string id { get; set; }
|
|
public Games game { get; set; }
|
|
public string description { get; set; }
|
|
public Cities city { get; set; }
|
|
}
|
|
} |