Files
familytree/myshare/API/FamilyTreeAPI/Models/staff.cs
T
2025-09-25 17:21:13 +10:00

30 lines
1000 B
C#

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; }
}
}