using System.Collections.Generic; using DR.FV2016.Service.Models; namespace DR.FV2016.Web.Models.Results { public class Result { public ElectionState ElectionState { get; set; } public decimal CountedPercent { get; set; } public ResultType ResultType { get; set; } public int ShareRed { get; set; } public int ShareBlue { get; set; } public List Results { get; set; } } }