@using Models @model List @{ string[] items = null;} @if (Model != null && Model.Count > 0) { foreach (LotteryData item in Model) {
@item.LotteryName
} }