Files
PyroFetes-Sujet1/PyroFetes/DTO/Classification/Response/GetClassificationDto.cs
2025-10-09 17:17:42 +02:00

8 lines
157 B
C#

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