11 lines
305 B
C#
11 lines
305 B
C#
namespace GerbilManager.Dtos
|
|
{
|
|
public record CreateLitterDto
|
|
{
|
|
public string Name { get; init; }
|
|
public DateTime Date { get; init; }
|
|
public int Strength { get; init; }
|
|
public Guid Father { get; init; }
|
|
public Guid Mother { get; init; }
|
|
}
|
|
} |