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