using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 临时键值类
///
public class KeyValueClass
{
string key;
///
/// 键
///
public string Key
{
get { return key; }
set { key = value; }
}
string value;
///
/// 值
///
public string Value
{
get { return this.value; }
set { this.value = value; }
}
string remark;
///
/// 备注
///
public string Remark
{
get { return remark; }
set { remark = value; }
}
}
}