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