put in ignore file
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user