Init commit
This commit is contained in:
13
Models/Litter.cs
Normal file
13
Models/Litter.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
namespace GerbilManager.Models
|
||||
{
|
||||
public record Litter
|
||||
{
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user