using MongoDB.Bson; using MongoDB.Bson.Serialization.Attributes; namespace UGQDatabase.Models; public class BookmarkEntity { [BsonId] [BsonRepresentation(BsonType.ObjectId)] public string Id { get; set; } = null!; public long QuestId { get; set; } public string UserGuid { get; set; } = null!; [BsonRequired] public DateTime CreatedAt { get; set; } }