15 lines
476 B
C#
15 lines
476 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; }
|
|
}
|
|
}
|