Files
PyroFetes-Sujet1/PyroFetes/DTO/Classification/Response/GetClassificationDto.cs

8 lines
157 B
C#

namespace API.DTO.Classification.Response;
public class GetClassificationDto
{
public int Id { get; set; }
public string? Label { get; set; }
}