You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.3 KiB

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;
/// <summary>
/// 标题
/// </summary>
public string Title
{
get { return title; }
set { title = value; }
}
/// <summary>
/// 日期
/// </summary>
public string Date
{
get { return date; }
set { date = value; }
}
/// <summary>
/// 地址
/// </summary>
public string Url
{
get { return url; }
set { url = value; }
}
/// <summary>
/// 是否替换配置文件
/// </summary>
public string IsCopyConfig
{
get { return isCopyConfig; }
set { isCopyConfig = value; }
}
/// <summary>
/// 描述
/// </summary>
public string Describtion
{
get { return describtion; }
set { describtion = value; }
}
}
}