Files
AP-WEB-PF3/PF3/DTO/SoundCategory/Response/ReadSoundCategoryDto.cs
2025-10-02 17:21:25 +02:00

7 lines
155 B
C#

namespace PF3.DTO.SoundCategory.Response;
public class ReadSoundCategoryDto
{
public int? Id { get; set; }
public string? Name { get; set; }
}