Files
familytree/API/FamilyTreeAPI/Entities/RelationShipDto.cs
T
2025-08-29 23:17:58 +10:00

22 lines
477 B
C#

namespace FamilyTreeAPI.Entities;
public class RelationShiftContainer
{
public int familyId {get; set;}
public List<RelationShipDto> relationShips {get; set;}
}
public class ImportRelation
{
public int FatherId { get; set; }
public int MotherId { get; set; }
}
public class RelationShipDto
{
public enumState State { get; set; }
public int Id { get; set; }
public int PersonId { get; set; }
public int RelatePersonId { get; set; }
}