12 lines
298 B
C#
12 lines
298 B
C#
|
|
namespace GerbilManagerWebAPI.Dtos
|
|
{
|
|
public record UpdateLitterDto
|
|
{
|
|
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; }
|
|
}
|
|
} |