using System.Collections.Generic; namespace skydiveLogs_api.Domain { public class UserStats { #region Public Constructors public UserStats() { ByAircraft = new List(); ByDz = new List(); ByGear = new List(); ByJumpType = new List(); ByYear = new List(); ForLastMonthByDz = new List(); ForLastMonthByJumpType = new List(); ForLastYearByDz = new List(); ForLastYearByJumpType = new List(); ByYearByJumpType = new List(); } #endregion Public Constructors #region Public Properties public IEnumerable ByAircraft { get; set; } public IEnumerable ByDz { get; set; } public IEnumerable ByGear { get; set; } public IEnumerable ByJumpType { get; set; } public IEnumerable ByYear { get; set; } public IEnumerable ForLastMonthByDz { get; set; } public IEnumerable ForLastMonthByJumpType { get; set; } public IEnumerable ForLastYearByDz { get; set; } public IEnumerable ForLastYearByJumpType { get; set; } public IEnumerable ByYearByJumpType { get; set; } public int Id { get; set; } public User User { get; set; } #endregion Public Properties } }