using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Collections;
using System.Text;
namespace Ant.ORM
{
public class FieldValue
{
//构造函数
public FieldValue() { }
///
/// 字段名和值
///
///
///
public FieldValue(string name, object value)
{
this.name = name;
this.value = value;
}
private string name;
///
/// 字段名
///
public string Name
{
get { return name; }
set { name = value; }
}
private object value;
///
/// 字段值
///
public object Value
{
get { return this.value; }
set { this.value = value; }
}
}
}