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

6 lines
123 B
C#

namespace PF3.DTO.SoundCategory.Request;
public class CreateSoundCategoryDto
{
public string? Name { get; set; }
}