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