Files
AP-WEB-PF3/PF3/DTO/Sound/Response/ReadSoundDto.cs
2025-10-02 17:12:04 +02:00

7 lines
147 B
C#

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