marco.pms.api/Marco.Pms.Model/Dtos/Inventory/RequisitionStatusDto.cs

10 lines
243 B
C#

namespace Marco.Pms.Model.Dtos.Inventory
{
public class RequisitionStatusDto
{
public Guid? Id { get; set; }
public required string Name { get; set; }
public required string Description { get; set; }
}
}