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

7 lines
136 B
C#

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