Dto Sound
This commit is contained in:
6
PF3/DTO/Sound/Request/CreateSoundDto.cs
Normal file
6
PF3/DTO/Sound/Request/CreateSoundDto.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace PF3.DTO.Sound.Request;
|
||||||
|
|
||||||
|
public class CreateSoundDto
|
||||||
|
{
|
||||||
|
public string? Name { get; set; }
|
||||||
|
}
|
6
PF3/DTO/Sound/Request/IdSoundDto.cs
Normal file
6
PF3/DTO/Sound/Request/IdSoundDto.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace PF3.DTO.Sound.Request;
|
||||||
|
|
||||||
|
public class IdSoundDto
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
}
|
7
PF3/DTO/Sound/Request/UpdateSoundDto.cs
Normal file
7
PF3/DTO/Sound/Request/UpdateSoundDto.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace PF3.DTO.Sound.Request;
|
||||||
|
|
||||||
|
public class UpdateSoundDto
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
public string? Name { get; set; }
|
||||||
|
}
|
7
PF3/DTO/Sound/Response/ReadSoundDto.cs
Normal file
7
PF3/DTO/Sound/Response/ReadSoundDto.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace PF3.DTO.Sound.Response;
|
||||||
|
|
||||||
|
public class ReadSoundDto
|
||||||
|
{
|
||||||
|
public int? Id { get; set; }
|
||||||
|
public string? Name { get; set; }
|
||||||
|
}
|
Reference in New Issue
Block a user