Skip to content

Instantly share code, notes, and snippets.

@rafaelrmou
Created April 15, 2015 16:25
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save rafaelrmou/2d709116c4497efda13e to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace BHS.Utils
{
public class MenuItem : Cell
{
public string Title { get; set; }
public string IconSource { get; set; }
public Type TargetType { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment