Files
Projet4/PyroFetes/DTO/ExperienceLevel/Request/UpdateExperienceLevelDto.cs
carteronm 4e64112a31 First Commit 09/10
# Conflicts:
#	PyroFetes/PyroFetes.csproj
2025-10-16 17:34:55 +02:00

7 lines
163 B
C#

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