8 lines
129 B
C#
8 lines
129 B
C#
|
|
namespace GerbilManagerWebAPI.Dtos
|
|
{
|
|
public record UpdateBreederDto
|
|
{
|
|
public string? Name { get; init; }
|
|
}
|
|
} |