Files
GerbilManager/Dtos/CreateLitterDto.cs
2023-10-17 00:33:44 +02:00

11 lines
305 B
C#

namespace GerbilManager.Dtos
{
public record CreateLitterDto
{
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; }
}
}