Files
zentral/src/backend/Zentral.API/Apps/Production/Dtos/CreateBillOfMaterialsDto.cs

18 lines
557 B
C#

namespace Zentral.API.Apps.Production.Dtos;
public class CreateBillOfMaterialsDto
{
public string Name { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public int ArticleId { get; set; }
public decimal Quantity { get; set; }
public List<CreateBillOfMaterialsComponentDto> Components { get; set; } = new();
}
public class CreateBillOfMaterialsComponentDto
{
public int ComponentArticleId { get; set; }
public decimal Quantity { get; set; }
public decimal ScrapPercentage { get; set; }
}