IViewModel.cs 335 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OnlineMonitorSystem.Model
  8. {
  9. public interface IViewModel: INotifyPropertyChanged, IDisposable
  10. {
  11. public IModel Model { get; }
  12. public void Init();
  13. }
  14. }