You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
421 B
16 lines
421 B
using Model;
|
|
|
|
namespace Views
|
|
{
|
|
public partial class AddRecipe : ContentPage
|
|
{
|
|
public MasterManager Master => (Application.Current as App).Master;
|
|
|
|
public List<Unit> UnitList { get; set; } = new List<Unit> { Unit.unit, Unit.kG, Unit.mG, Unit.G, Unit.L, Unit.cL, Unit.mL };
|
|
public AddRecipe()
|
|
{
|
|
InitializeComponent();
|
|
BindingContext = this;
|
|
}
|
|
}
|
|
} |