using LiteDB; namespace StorageServer.Models; public class FileModel { [BsonId] public long FileID { get; set; } public string FileName { get; set; } public string MimeType { get; set; } public string HashValue { get; set; } public DateTime CreatedAt { get; set; } public bool IsDeleted { get; set; } = false; }