@if (Model.ShowDiscount)
{
}
@if (Model.EnableTips)
{
@Model.CustomTipText
@if (Model.CustomTipPercentages != null && Model.CustomTipPercentages.Length > 0)
{
@for (int i = 0; i < Model.CustomTipPercentages.Length; i++)
{
var percentage = Model.CustomTipPercentages[i];
}
}
}