using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Dtos
{
///
/// 下拉框的模型
///
public class CbxItems : BindableBase
{
private string _Key;
///
/// Key值
///
public string Key
{
get { return _Key; }
set { _Key = value; RaisePropertyChanged(); }
}
private string _Text;
///
/// Text 值
///
public string Text
{
get { return _Text; }
set { _Text = value; RaisePropertyChanged(); }
}
}
}