Files
GerbilManager/Models/Litter.cs
2023-10-16 20:48:58 +02:00

14 lines
341 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; }
}
}