using System.ComponentModel.DataAnnotations; namespace GerbilManagerWebAPI.Models { public record Litter { [Key] 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; } } }