using Shaker.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShakerApp.ViewModels { internal class StartPageDataReviewViewModel : BaseDataReviewItemViewModel { private StartPageDataReviewViewModel() { Content = typeof(Views.StartDataReviewView); } static StartPageDataReviewViewModel() { } public static StartPageDataReviewViewModel Instance { get; } = new StartPageDataReviewViewModel(); public override MainPageType PageType => MainPageType.StartPage; } }