10 lines
251 B
C#
10 lines
251 B
C#
namespace Marco.Pms.Model.Dtos.Inventory
|
|
{
|
|
public class PurchaseStatusMappingDto
|
|
{
|
|
public Guid PurchaseStatusId { get; set; }
|
|
public Guid NextPurchaseStatusId { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|