using System.Collections.Generic; namespace YJMPD_UWP.Model.Object { public class Statistics { public Statistics() { Points = new List(); Distance = 0; Matches = 0; Selected = 0; } public List Points { get; set; } public double Distance { get; set; } public int Matches { get; set; } public int Selected { get; set; } public void AddPoints(double points) { Points.Add(points); } } }