using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using FWindSoft.Data; namespace Com.FirmLib.UI.Insuer.Model { public class InsuerShowItem:BasePropertyChanged { /// /// 保险商Id /// public string Id { get; set; } private string m_Name; /// /// 保险商名称 /// public string Name { get { return this.m_Name; } set { this.m_Name = value; RaisePropertyChanged(() => this.Name); } } private string m_Url; /// /// 保险商网址 /// public string Url { get { return this.m_Url; } set { this.m_Url = value; RaisePropertyChanged(() => this.Url); } } private int m_RefProjectCount; /// /// 关联项目数量 /// public int RefProjectCount { get { return this.m_RefProjectCount; } set { this.m_RefProjectCount = value; RaisePropertyChanged(() => this.RefProjectCount); } } } }