MonodroidStockPortfolio/MonoStockPortfolio/Activites/PortfolioScreen/MenuOption.cs
2011-03-22 00:18:30 -04:00

10 lines
No EOL
270 B
C#

namespace MonoStockPortfolio.Activites.PortfolioScreen
{
public class MenuOption
{
public int Id { get; set; }
public int Order { get; set; }
public string Title { get; set; }
public int IconResource { get; set; }
}
}