17 lines
397 B
C#
17 lines
397 B
C#
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; }
|
|
}
|
|
}
|
|
|