Files
GerbilManager/GerbilManagerWebAPI/Models/Litter.cs
2023-10-21 14:02:51 +02:00

14 lines
328 B
C#

namespace GerbilManager.Models
{
public record Litter
{
public Guid Id { get; init; }
public string Name { get; init; }
public DateTime Date { get; init; }
public int Strength { get; init; }
public Gerbil Father { get; init; }
public Gerbil Mother { get; init; }
}
}