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