Files
GerbilManager/Dtos/LitterDto.cs
2023-10-16 22:37:49 +02:00

12 lines
344 B
C#

namespace GerbilManager.Dtos
{
public record LitterDto
{
public Guid Id { get; init; }
public string Name { get; init; }
public DateTime Date { get; init; }
public int Strength { get; init; }
public GerbilDto Father { get; init; }
public GerbilDto Mother { get; init; }
}
}