Finit les DTO

This commit is contained in:
2025-10-02 17:12:04 +02:00
parent 949aedac78
commit 29b9520193
14 changed files with 93 additions and 9 deletions

View File

@@ -0,0 +1,13 @@
namespace PF3.DTO.SoundCategory.Request;
public class CreateSoundCategoryDto
{
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; }
}