Init commit

This commit is contained in:
2023-10-16 20:48:58 +02:00
parent 5ebc16046c
commit 2d5dfd6154
14 changed files with 286 additions and 0 deletions

11
Models/Gerbil.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace GerbilManager.Models
{
public record Gerbil
{
public Guid Id { get; init; }
public string Name { get; init; }
public Gender Gender { get; init; }
public Litter Litter { get; init; }
public Breeder Breeder { get; init; }
}
}