Files
YuPu-OrpaonEMS/OrpaonEMS.App/Com/ComboBoxModel.cs
2025-02-28 22:23:13 +08:00

33 lines
608 B
C#

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;
/// <summary>
/// Key值
/// </summary>
public String Key
{
get { return key; }
set { key = value; }
}
private String text;
/// <summary>
/// Text值
/// </summary>
public String Text
{
get { return text; }
set { text = value; }
}
}
}