12 lines
303 B
C#
12 lines
303 B
C#
|
|
namespace GerbilManager.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; }
|
|
}
|
|
} |