using System.ComponentModel.DataAnnotations; namespace GerbilManagerWebAPI.Models { public record Litter { [Key] public Guid Id { get; init; } public required string Name { get; init; } public required DateTime Date { get; init; } public int? Strength { get; init; } public Gerbil? Father { get; init; } public Gerbil? Mother { get; init; } } }