12 lines
364 B
C#
12 lines
364 B
C#
namespace Marco.Pms.Model.PurchaseInvoice
|
|
{
|
|
public class PurchaseInvoiceStatus
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = default!;
|
|
public string DisplayName { get; set; } = default!;
|
|
public string Color { get; set; } = default!;
|
|
public string Description { get; set; } = default!;
|
|
}
|
|
}
|