MonodroidStockPortfolio/MonoStockPortfolio/Activites/PortfolioScreen/MenuOption.cs

10 lines
270 B
C#
Raw Normal View History

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; }
}
}