16 lines
311 B
C#
16 lines
311 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 DateTimeOffset CreatedDate { get; set; }
|
|
|
|
public IList<PersonDto> Members { get; init;}
|
|
}
|
|
} |