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

7 lines
156 B
C#

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