using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConUpdate { class XmlNodeItem { private string title = string.Empty; private string date = string.Empty; private string url = string.Empty; private string isCopyConfig = string.Empty; private string describtion = string.Empty; /// /// 标题 /// public string Title { get { return title; } set { title = value; } } /// /// 日期 /// public string Date { get { return date; } set { date = value; } } /// /// 地址 /// public string Url { get { return url; } set { url = value; } } /// /// 是否替换配置文件 /// public string IsCopyConfig { get { return isCopyConfig; } set { isCopyConfig = value; } } /// /// 描述 /// public string Describtion { get { return describtion; } set { describtion = value; } } } }