| 123456789101112131415161718192021222324252627 |
- using System.Collections.Generic;
- namespace YJMPD_UWP.Model.Object
- {
- public class Statistics
- {
-
- public Statistics()
- {
- Points = new List<double>();
- Distance = 0;
- Matches = 0;
- Selected = 0;
- }
- public List<double> 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);
- }
- }
- }
|