using DR.Web.UI.ViewConfig; namespace DR.FV2016.Web.Models.Candidate.Configs { public class CandidateItemViewConf : ItemViewConf { public bool ShowPartyName = false; public bool ShowArea = false; public bool ShowMatchResultBar = false; public PartyLetterSize PartyLetterSize = PartyLetterSize.Medium; public bool ShowSubheadline = true; public bool ShowVotes = false; public bool ShowWinners { get; set; } public bool IsPersonalVotesAvailable { get; set; } public bool IsPartyLetterHidden { get; set; } } public enum PartyLetterSize { Large, Medium, Small } }