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

11 lines
168 B
C#

using System;
namespace weddingapi.Models
{
public record Person
{
public string Name { get; init; }
public bool IsChild { get; set; }
}
}