Add all controllers

This commit is contained in:
2023-10-17 00:50:43 +02:00
parent 7ee50442c5
commit 8a2995302a
7 changed files with 218 additions and 2 deletions

12
Dtos/UpdateLitterDto.cs Normal file
View File

@@ -0,0 +1,12 @@
namespace GerbilManager.Dtos
{
public record UpdateLitterDto
{
public string Name { get; init; }
public DateTime Date { get; init; }
public int Strength { get; init; }
public Guid Father { get; init; }
public Guid Mother { get; init; }
}
}