add missing fields

This commit is contained in:
Julian
2022-02-12 20:08:48 +01:00
parent 3154152851
commit 2a3af9b0a0
7 changed files with 50 additions and 2 deletions

View File

@@ -6,9 +6,13 @@ namespace weddingapi.Models
public record Family
{
public Guid Id { get; init; }
public string Name { get; init; }
public string Email { get; init; }
public string Telephonenumber { get; init; }
public DateTimeOffset CreatedDate { get; set; }
public IList<Person> Members { get; init; }