7 lines
148 B
C#
7 lines
148 B
C#
namespace PF3.DTO.SoundCategory.Request;
|
|
|
|
public class UpdateSoundDto
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? Name { get; set; }
|
|
} |