using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CapMachine.Wpf.Models
{
public class ComboBoxModel: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(); }
}
}
}