Files
PyroFetes-Sujet1/PyroFetes/DTO/Classification/Request/UpdateClassificationDto.cs
2025-10-09 16:55:29 +02:00

8 lines
165 B
C#

namespace PyroFetes.DTO.Classification.Request;
public class UpdateClassificationDto
{
public int Id { get; set; }
public string? Label { get; set; }
}