using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { public class CModel { private string cname; private string cid; private int count; public string Cid { get { return cid; } set { cid = value; } } private List clist; /// /// QCid /// /// /// QC名称 /// public string Cname { get { return cname; } set { cname = value; } } /// /// QC分数 /// /// /// QC评分 /// public int Count { get { return count; } set { count = value; } } /// /// QC子类 /// public List Clist { get { return clist; } set { clist = value; } } } }