using System.ComponentModel.DataAnnotations;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
namespace HelloWorldMvcApp
[DisplayName("Select the region")]
public string SelectedId { get; set; }
public IEnumerable<SelectListItem> SelectedRegion { get; set; }
new SelectListItem { Value = "BR", Text = "Brasil" },
new SelectListItem { Value = "EUNE", Text = "Europe East" },
new SelectListItem { Value = "EUW", Text = "Europe West" },
new SelectListItem { Value = "KR", Text = "Korea" },
new SelectListItem { Value = "LAN", Text = "Latin America North" },
new SelectListItem { Value = "LAS", Text = "Latin America South" },
new SelectListItem { Value = "NA", Text = "Northamerica" },
new SelectListItem { Value = "OCE", Text = "Oceania" },
new SelectListItem { Value = "TR", Text = "Tr" },
new SelectListItem { Value = "PBE", Text = "PBE" },
new SelectListItem { Value = "Global", Text = "Global" }