IViewModelControl.cs 212 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Core.UI.MVVM
  6. {
  7. public interface IViewModelControl
  8. {
  9. void InvokePropertyChanged();
  10. }
  11. }