marco.pms.api/Marco.Pms.Model/ViewModels/PurchaseInvoice/PurchaseInvoiceAttachmentVM.cs

17 lines
568 B
C#

using Marco.Pms.Model.PurchaseInvoice;
namespace Marco.Pms.Model.ViewModels.PurchaseInvoice
{
public class PurchaseInvoiceAttachmentVM
{
public Guid DocumentId { get; set; }
public InvoiceAttachmentType? InvoiceAttachmentType { get; set; }
public string? FileName { get; set; }
public string? ContentType { get; set; }
public string? PreSignedUrl { get; set; }
public string? ThumbPreSignedUrl { get; set; }
public long FileSize { get; set; }
public DateTime UploadedAt { get; set; }
}
}