using System; using System.Collections.Generic; namespace FamilyTreeAPI.Models { public partial class staff { public staff() { // ServicetaskAssigntoNavigations = new HashSet(); // ServicetaskStaffs = new HashSet(); // Staffworks = new HashSet(); } 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 ServicetaskAssigntoNavigations { get; set; } // public virtual ICollection ServicetaskStaffs { get; set; } //public virtual ICollection Staffworks { get; set; } } }