StatisticsModel.cs 553 B

12345678910111213141516171819202122232425
  1. using Shaker.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Reactive;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. using System.Xml.Linq;
  9. namespace ShakerApp.Models
  10. {
  11. public class StatisticsModel : IModel
  12. {
  13. public string Name = string.Empty;
  14. public float Max;
  15. public float Min;
  16. public float RMS;
  17. public float Average;
  18. public string Unit = string.Empty;
  19. public object Clone()
  20. {
  21. return this.CloneBase();
  22. }
  23. }
  24. }