using System.ComponentModel.DataAnnotations;
namespace API.DTOs;
public sealed record PersonMergeDto
{
///
/// The id of the person being merged into
///
[Required]
public int DestId { get; init; }
///
/// The id of the person being merged. This person will be removed, and become an alias of
///
[Required]
public int SrcId { get; init; }
}