Files
PF3-fork/PyroFetes/DTO/Sound/Request/UpdateSoundDto.cs
2025-11-13 15:11:12 +01:00

15 lines
442 B
C#

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