Skip to content

Instantly share code, notes, and snippets.

@rafaelrmou
Created April 15, 2015 16:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rafaelrmou/6de44e94fca6a6910daf to your computer and use it in GitHub Desktop.
Save rafaelrmou/6de44e94fca6a6910daf to your computer and use it in GitHub Desktop.
using BHS.Pages;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BHS.Utils
{
public class MenuListData : List<MenuItem>
{
public MenuListData()
{
this.Add(new MenuItem()
{
Title = "",
IconSource = "drawable/home.png",
TargetType = typeof(Home)
});
this.Add(new MenuItem()
{
Title = "Contatos",
IconSource = "drawable/agent.png",
TargetType = typeof(Contatos)
});
this.Add(new MenuItem() {
Title = "Voucher Taxi",
IconSource = "drawable/tag.png",
TargetType = typeof(VoucherTaxi)
});
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment