using System; using System.Collections.Generic; using System.Linq; using System.Text; using GalaSoft.MvvmLight; namespace Muchinfo.MTPClient.Sale.ViewModels { public class QueryPurchaseViewModel : ViewModelBase { #region 构造函数 public QueryPurchaseViewModel() { } #endregion #region 成员变量 private bool _isBusy; /// /// 忙等待 /// public bool IsBusy { get { return _isBusy; } set { Set(() => IsBusy, ref _isBusy, value); } } #endregion #region 方法 #endregion } }