using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrpaonEMS.App.Com
{
public class ComboBoxModel
{
private String key;
///
/// Key值
///
public String Key
{
get { return key; }
set { key = value; }
}
private String text;
///
/// Text值
///
public String Text
{
get { return text; }
set { text = value; }
}
}
}