15 lines
504 B
C#
15 lines
504 B
C#
namespace Marco.Pms.Model.Dtos.Inventory
|
|
{
|
|
public class ItemDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = default!;
|
|
public string Description { get; set; } = default!;
|
|
public Guid ItemGroupId { get; set; }
|
|
public Guid TechnicalUnitId { get; set; }
|
|
public int Threshold { get; set; }
|
|
public List<SupplierManufacturerDto>? Suppliers { get; set; }
|
|
public List<ItemTaxTypeDto>? TaxRates { get; set; }
|
|
}
|
|
}
|