I have a model:
public class DocumentModel { public int TypeID { get; set; } public List DocumentTypes { get; set; } }
if what you want to do is to retrieve selected item then this can do the work :
var selecteItem = model.DocumentTypes.Where(item=>item.Selected).FirstOrDefault();
Cheers!