Files
PyroFetes-Sujet1/PyroFetes/DTO/Effect/Response/GetEffectDto.cs
2025-10-09 16:55:29 +02:00

7 lines
142 B
C#

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