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