19 lines
487 B
C#
19 lines
487 B
C#
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace weddingapi.Dtos
|
|
{
|
|
public record UpdateFamilyDto
|
|
{
|
|
[Required]
|
|
public string Name { get; init; }
|
|
[Required]
|
|
public IList<PersonDto> Members { get; init;}
|
|
[Required]
|
|
public bool Overnight { get; init; }
|
|
[Required]
|
|
public string Email { get; init; }
|
|
[Required]
|
|
public string Telephonenumber { get; init; }
|
|
}
|
|
} |