using System; using System.Collections.Generic; namespace weddingapi.Dtos { public record FamilyDto { public Guid Id { get; init; } public string Name { get; init; } public bool Overnight { get; init; } public string Email { get; init; } public string Telephonenumber { get; init; } public DateTimeOffset CreatedDate { get; set; } public IList Members { get; init;} } }