Files
AP-WEB-PF3/PF3/DTO/Sound/Request/CreateSoundDto.cs
2025-10-02 17:23:48 +02:00

14 lines
411 B
C#

namespace PF3.DTO.SoundCategory.Request;
public class CreateSoundDto
{
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 DateTime? CreationDate { get; set; }
public string? SoundCategoryId { get; set; }
}