Files
yandex-quest-server/Models/Tag.cs
T
2023-07-08 21:28:08 +05:00

14 lines
342 B
C#

using MongoDB.Bson.Serialization.Attributes;
using MongoDB.Bson;
namespace YandexGameServer.Models
{
[Serializable]
public class Tag
{
[BsonId, BsonRepresentation(BsonType.ObjectId)]
public string id { get; set; }
public string descrition { get; set; }
public string? city { get; set; }
}
}