StartPageViewModel.cs 749 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using Shaker.Models;
  2. using ShakerApp.Views;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ShakerApp.ViewModels
  9. {
  10. internal class StartPageViewModel:ViewModelBase<IModel>,IMainPageViewModel
  11. {
  12. public MainPageType PageType => MainPageType.StartPage;
  13. private StartPageViewModel()
  14. {
  15. }
  16. static StartPageViewModel()
  17. {
  18. }
  19. public void Start()
  20. {
  21. }
  22. public void Stop()
  23. {
  24. }
  25. void IMainPageViewModel.UpdateData(List<IResultDataModel> model)
  26. {
  27. }
  28. public static StartPageViewModel Instance { get; } = new StartPageViewModel();
  29. }
  30. }