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