Files
weddingapi/Dtos/PersonDto.cs
2022-01-23 19:20:13 +01:00

11 lines
169 B
C#

using System;
namespace weddingapi.Dtos
{
public record PersonDto
{
public string Name { get; init; }
public bool IsChild { get; set; }
}
}