using System; using TINK.View.Map; using TINK.ViewModel.MasterDetail; namespace TINK.View { public class MainPageMenuItem { public MainPageMenuItem() { TargetType = typeof(MapPage); } public MainPageMenuItem( int p_iId, Type p_oTypeOfPage, string p_strTitle = null) { TargetType = p_oTypeOfPage; Id = p_iId; Title = p_strTitle ?? Helper.GetCaption(p_oTypeOfPage); } public int Id { get; private set; } public string Title { get; private set; } public Type TargetType { get; private set; } } }