Files
weddingapi/Dtos/FamilyDto.cs
2022-02-12 14:48:49 +01:00

18 lines
357 B
C#

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 DateTimeOffset CreatedDate { get; set; }
public IList<PersonDto> Members { get; init;}
}
}