initalisation
This commit is contained in:
14
PyroFetes/DTO/Sound/Request/CreateSoundDto.cs
Normal file
14
PyroFetes/DTO/Sound/Request/CreateSoundDto.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
6
PyroFetes/DTO/Sound/Request/IdSoundto.cs
Normal file
6
PyroFetes/DTO/Sound/Request/IdSoundto.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace PF3.DTO.SoundCategory.Request;
|
||||
|
||||
public class IdSoundto
|
||||
{
|
||||
public int? Id { get; set; }
|
||||
}
|
||||
15
PyroFetes/DTO/Sound/Request/UpdateSoundDto.cs
Normal file
15
PyroFetes/DTO/Sound/Request/UpdateSoundDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace PF3.DTO.SoundCategory.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; }
|
||||
|
||||
}
|
||||
15
PyroFetes/DTO/Sound/Response/ReadSoundDto.cs
Normal file
15
PyroFetes/DTO/Sound/Response/ReadSoundDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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 DateTime? CreationDate { get; set; }
|
||||
public string? SoundCategoryId { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user