18 lines
310 B
C#
18 lines
310 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Lskj.PubApiSetModule
|
|
{
|
|
public class ComBoxModel
|
|
{
|
|
public object Value;
|
|
public string Text;
|
|
public override string ToString()
|
|
{
|
|
return Text;
|
|
}
|
|
}
|
|
}
|