forked from sanchezvem/PyroFetes
8 lines
178 B
C#
8 lines
178 B
C#
namespace API.DTO.Material.Response;
|
|
|
|
public class GetMaterialDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Label { get; set; }
|
|
public int Quantity { get; set; }
|
|
} |