11 lines
169 B
C#
11 lines
169 B
C#
using System;
|
|
|
|
namespace weddingapi.Dtos
|
|
{
|
|
public record PersonDto
|
|
{
|
|
public string Name { get; init; }
|
|
|
|
public bool IsChild { get; set; }
|
|
}
|
|
} |