10 lines
250 B
C#
10 lines
250 B
C#
namespace Marco.Pms.Model.PurchaseInvoice
|
|
{
|
|
public class InvoiceAttachmentType
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = default!;
|
|
public string Description { get; set; } = default!;
|
|
}
|
|
}
|