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