Files
Sergio Matias Urquin 83fc1878c4 Add project files.
2025-04-29 18:42:29 -06:00

14 lines
404 B
C#

namespace Core.Blueprint.Storage
{
public class BlobFileAdapter
{
public string? Uri { get; set; }
public string Name { get; set; } = null!;
public string? DateUpload { get; set; }
public string? ContentType { get; set; }
public long? Size { get; set; }
public string? Status { get; set; }
public string? ShortDate { get; set; }
}
}