Files
weddingapi/Models/Family.cs
2022-01-23 19:20:13 +01:00

21 lines
400 B
C#

using System;
using System.Collections.Generic;
namespace weddingapi.Models
{
public record Family
{
public Guid Id { get; init; }
public string Name { get; init; }
public DateTimeOffset CreatedDate { get; set; }
public IList<Person> Members { get; init; }
public Family()
{
this.Members = new List<Person>();
}
}
}