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