models + fix DTO

This commit is contained in:
2025-10-02 17:21:25 +02:00
parent 29b9520193
commit 52066ccdc2
14 changed files with 168 additions and 23 deletions

View File

@@ -3,11 +3,4 @@
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; }
}

View File

@@ -4,11 +4,4 @@ public class UpdateSoundCategoryDto
{
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; }
}