StorageServer/Models/FileModel.cs

15 lines
343 B
C#
Raw Permalink Normal View History

2024-03-24 10:29:56 +09:00
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; }
2024-03-24 14:17:48 +09:00
public bool IsDeleted { get; set; } = false;
2024-03-24 10:29:56 +09:00
}