forked from sanchezvem/PyroFetes
9 lines
188 B
C#
9 lines
188 B
C#
namespace API.DTO.Material.Request;
|
|
|
|
public class CreateMaterialDto
|
|
{
|
|
public string? Label { get; set; }
|
|
public int Quantity { get; set; }
|
|
public int WarehouseId {get; set;}
|
|
|
|
} |