using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Kingo.Plugin.EngineEditor.Model
{
public class CboItemEntity
{
public int ID { get; set; }
private object _text = 0;
private object _Value = "";
///
/// 显示值
///
public object Text
{
get { return this._text; }
set { this._text = value; }
}
///
/// 对象值
///
public object Value
{
get { return this._Value; }
set { this._Value = value; }
}
public override string ToString()
{
return this.Text.ToString();
}
}
}