Files
GerbilManager/Dtos/UpdateLitterDto.cs
2023-10-17 00:50:43 +02:00

12 lines
303 B
C#

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; }
}
}