Files
yandex-quest-server/Models/Tag.cs
T
2023-07-09 20:30:44 +05:00

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