put in signal for edit

This commit is contained in:
2025-09-25 17:21:13 +10:00
parent 4b85a90b71
commit ee19397f59
171 changed files with 12181 additions and 15 deletions
@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
namespace FamilyTreeAPI.Models
{
public partial class Person
{
public Person()
{
// Servicetasks = new HashSet<Servicetask>();
}
public int Id { get; set; }
public string? FirstName { get; set; }
public string? LastName { get; set; }
public string? Email { get; set; }
public string? Phone { get; set; }
public string? Address { get; set; }
public string? Sex { get; set; }
public string? Image { get; set; }
public bool? Alive { get; set; }
public int? MotherId { get; set; }
public int? FatherId { get; set; }
public DateTime? dob { get; set; }
//public virtual ICollection<Staffwork> Staffworks { get; set; }
}
}