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