Skip to content

Instantly share code, notes, and snippets.

@jlucaspains
Last active July 29, 2018 23:35
Show Gist options
  • Save jlucaspains/2e564f2c021f82def8f107f6cd2a792f to your computer and use it in GitHub Desktop.
Save jlucaspains/2e564f2c021f82def8f107f6cd2a792f to your computer and use it in GitHub Desktop.
using Xamarin.Forms;
using System;
namespace lpains.Helpers
{
public class LazyLoadedPage
{
public string Title { get; set; }
public string Icon { get; set; }
public Page Page { get; set; }
public Type ViewModelType { get; set; }
public object Data { get; set; }
public string Group { get; internal set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment