namespace Nuuru.Server.Models { public class StoredFile { public Guid Id { get; set; } public string FileIdentifier { get; set; } = null!; public string ContentType { get; set; } = null!; public long FileSize { get; set; } public string OriginalFileName { get; set; } = null!; public string Hash { get; set; } = null!; public DateTime CreatedAtUtc { get; set; } public bool IsPublic { get; set; } // Uploader information public Guid UploaderId { get; set; } public ApplicationUser Uploader { get; set; } = null!; } }