lmplement all actions

This commit is contained in:
2023-10-17 00:33:44 +02:00
parent fc98f99eda
commit 7ee50442c5
10 changed files with 143 additions and 1 deletions

10
Dtos/UpdateGerbilDto.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace GerbilManager.Dtos
{
public record UpdateGerbilDto
{
public string Name { get; init; }
public GenderDto Gender { get; init; }
public LitterDto Litter { get; init; }
public BreederDto Breeder { get; init; }
}
}