15 lines
352 B
C#
15 lines
352 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace weddingapi.Dtos
|
|
{
|
|
public record CreateFamilyDto
|
|
{
|
|
[Required]
|
|
public string Name { get; init; }
|
|
[Required]
|
|
public bool Overnight { get; set; }
|
|
[Required]
|
|
public IList<PersonDto> Members { get; init;}
|
|
}
|
|
} |