using System.Collections.Generic; namespace DR.FV2016.Web.Models.Match { public class ResultViewModel : FvViewBase { public string ConstituencyName { get; set; } public string ConstituencySlug { get; set; } public string MatchCandidateName { get; set; } public List TopResults = new List(); public List BottomResults = new List(); } }