This commit is contained in:
john 2025-05-11 23:43:38 +02:00
parent 1ecaf64dea
commit cb9d5e332e
11 changed files with 72 additions and 69 deletions

View file

@ -0,0 +1,22 @@
using System.ComponentModel.DataAnnotations.Schema;
namespace Femto.Modules.Media.Data;
[Table("saved_blob")]
internal class SavedBlob
{
public Guid Id { get; private set; }
public DateTime UploadedOn { get; private set; }
public string Type { get; private set; }
public long? Size { get; private set; }
public SavedBlob(Guid id, string type, long? size)
{
Id = id;
UploadedOn = DateTime.UtcNow;
Type = type;
Size = size;
}
private SavedBlob() { }
}