put in ignore file

This commit is contained in:
2025-08-10 22:01:36 +10:00
parent c2bf5cad70
commit ba79e8f1c4
151 changed files with 21703 additions and 0 deletions
+30
View File
@@ -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; }
}
}