11 lines
168 B
C#
11 lines
168 B
C#
using System;
|
|
|
|
namespace weddingapi.Models
|
|
{
|
|
public record Person
|
|
{
|
|
public string Name { get; init; }
|
|
|
|
public bool IsChild { get; set; }
|
|
}
|
|
} |