12 lines
344 B
C#
12 lines
344 B
C#
namespace GerbilManager.Dtos
|
|
{
|
|
public record LitterDto
|
|
{
|
|
public Guid Id { get; init; }
|
|
public string Name { get; init; }
|
|
public DateTime Date { get; init; }
|
|
public int Strength { get; init; }
|
|
public GerbilDto Father { get; init; }
|
|
public GerbilDto Mother { get; init; }
|
|
}
|
|
} |