12345678910111213141516171819202122232425 |
- using Shaker.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reactive;
- using System.Text;
- using System.Threading.Tasks;
- using System.Xml.Linq;
- namespace ShakerApp.Models
- {
- public class StatisticsModel : IModel
- {
- public string Name = string.Empty;
- public float Max;
- public float Min;
- public float RMS;
- public float Average;
- public string Unit = string.Empty;
- public object Clone()
- {
- return this.CloneBase();
- }
- }
- }
|