StorageServer/Models/FileModel.cs
2024-03-24 14:17:48 +09:00

15 lines
343 B
C#

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