using System.Collections.Generic; using DR.Web.UI.Model; namespace DR.FV2016.Web.Models.Candidate { public class CandidateArticleList : ArticleList { public int PartyId { get; set; } public string PartyLetter { get; set; } public string PartyName { get; set; } public int Votes { get; set; } public decimal SharePercent { get; set; } public decimal DeviationPercent { get; set; } public float VotesPercentage2015 { get; set; } public float VotesPercentage2011 { get; set; } public new IEnumerable Items = new List(); public ArticleList News { get; set; } public bool IsListTopCandidates { get; set; } } }