11 lines
257 B
C#
11 lines
257 B
C#
namespace GerbilManager.Dtos
|
|
{
|
|
public record CreateGerbilDto
|
|
{
|
|
public string Name { get; init; }
|
|
public GenderDto Gender { get; init; }
|
|
public Guid Litter { get; init; }
|
|
public Guid Breeder { get; init; }
|
|
}
|
|
|
|
} |