using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { public class T_CTI_TaskCategory { public int F_Id { get; set; } public int F_ParentId { get; set; } public string F_Name { get; set; } /// /// join T_CTI_TaskCategory /// public string F_ParentName { get; set; } } }