21 lines
400 B
C#
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>();
|
|
}
|
|
}
|
|
} |