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.
31 lines
692 B
31 lines
692 B
namespace Kingo.Plugin.EngineEditor.Model |
|
{ |
|
public class CboItemEntity |
|
{ |
|
public int ID { get; set; } |
|
|
|
private object _text = 0; |
|
private object _Value = ""; |
|
/// <summary> |
|
/// 显示值 |
|
/// </summary> |
|
public object Text |
|
{ |
|
get { return this._text; } |
|
set { this._text = value; } |
|
} |
|
/// <summary> |
|
/// 对象值 |
|
/// </summary> |
|
public object Value |
|
{ |
|
get { return this._Value; } |
|
set { this._Value = value; } |
|
} |
|
|
|
public override string ToString() |
|
{ |
|
return this.Text.ToString(); |
|
} |
|
} |
|
}
|
|
|