StartPageDataReviewViewModel.cs 638 B

1234567891011121314151617181920212223
  1. using Shaker.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ShakerApp.ViewModels
  8. {
  9. internal class StartPageDataReviewViewModel : BaseDataReviewItemViewModel
  10. {
  11. private StartPageDataReviewViewModel()
  12. {
  13. Content = typeof(Views.StartDataReviewView);
  14. }
  15. static StartPageDataReviewViewModel()
  16. {
  17. }
  18. public static StartPageDataReviewViewModel Instance { get; } = new StartPageDataReviewViewModel();
  19. public override MainPageType PageType => MainPageType.StartPage;
  20. }
  21. }