namespace I2R.Storage.Api.Database.Models; public class File : Base { public File() { } public File(Guid createdBy) : base(createdBy) { } public string Name { get; set; } public string MimeType { get; set; } public long SizeInBytes { get; set; } public Folder Folder { get; set; } public Guid FolderId { get; set; } public bool IsEncrypted { get; set; } public bool IsBinned { get; set; } public List Permissions { get; set; } }