11 lines
276 B
C#
11 lines
276 B
C#
namespace Marco.Pms.Model.ViewModels.Inventory
|
|
{
|
|
public class PurchaseOrderStatusVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|