1234567891011121314151617181920212223242526272829303132333435363738 |
- using Shaker.Models;
- using ShakerApp.Views;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ShakerApp.ViewModels
- {
- internal class StartPageViewModel:ViewModelBase<IModel>,IMainPageViewModel
- {
- public MainPageType PageType => MainPageType.StartPage;
- private StartPageViewModel()
- {
- }
- static StartPageViewModel()
- {
- }
- public void Start()
- {
- }
- public void Stop()
- {
- }
- void IMainPageViewModel.UpdateData(List<IResultDataModel> model)
- {
- }
- public static StartPageViewModel Instance { get; } = new StartPageViewModel();
- }
- }
|