14 lines
334 B
C#
14 lines
334 B
C#
namespace GerbilManagerWebAPI.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; }
|
|
}
|
|
}
|
|
|