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
+29
View File
@@ -0,0 +1,29 @@
using System;
using System.Collections.Generic;
namespace FamilyTreeAPI.Models
{
public partial class staff
{
public staff()
{
// ServicetaskAssigntoNavigations = new HashSet<Servicetask>();
// ServicetaskStaffs = new HashSet<Servicetask>();
// Staffworks = new HashSet<Staffwork>();
}
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 int? Stype { get; set; }
public int? Srole { get; set; }
public string? Spassword { get; set; }
public bool? Sactive { get; set; }
// public virtual ICollection<Servicetask> ServicetaskAssigntoNavigations { get; set; }
// public virtual ICollection<Servicetask> ServicetaskStaffs { get; set; }
//public virtual ICollection<Staffwork> Staffworks { get; set; }
}
}