StorageServer/Models/FileModel.cs

14 lines
294 B
C#
Raw 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; }
}