IEventNotifyView.cs 117 B

12345678
  1. 
  2. namespace Tree
  3. {
  4. public interface IEventNotifyView
  5. {
  6. void OnDataContextChange();
  7. }
  8. }