23 lines
822 B
C#
23 lines
822 B
C#
namespace Marco.Pms.Model.ViewModels.DocumentManager
|
|
{
|
|
public class DocumentVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public Guid? BatchId { get; set; }
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string? PreSignedUrl { get; set; }
|
|
public string? ThumbPreSignedUrl { get; set; }
|
|
public long FileSize { get; set; }
|
|
public string ContentType { get; set; } = string.Empty;
|
|
public DateTime UploadedAt { get; set; }
|
|
}
|
|
public class BasicDocumentVM
|
|
{
|
|
public Guid DocumentId { get; set; }
|
|
public string FileName { get; set; } = string.Empty;
|
|
public string ContentType { get; set; } = string.Empty;
|
|
public string? PreSignedUrl { get; set; }
|
|
public string? ThumbPreSignedUrl { get; set; }
|
|
}
|
|
}
|