using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace BuildFeed.Models.ViewModel { public class StatsPage { public IEnumerable AdditionsByMonth { get; set; } public IEnumerable CompilesByMonth { get; set; } public IEnumerable> BuildsByLab { get; set; } } public struct MonthCount { public int Year { get; set; } public int Month { get; set; } public int Count { get; set; } } }