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

15 lines
441 B
C#

namespace PF3.DTO.SoundCategory.Response;
public class ReadSoundDto
{
public int? Id { get; set; }
public string? Name { get; set; }
public string? Type { get; set; }
public string? Artist { get; set; }
public string? Duration { get; set; }
public string? Kind { get; set; }
public string? Format { get; set; }
public string? CreationDate { get; set; }
public string? SoundCategoryId { get; set; }
}