StatisticsTimeSpan.cs 171 B

12345678910
  1. namespace Moonlight.App.Models.Misc;
  2. public enum StatisticsTimeSpan
  3. {
  4. Hour = 1,
  5. Day = 24,
  6. Month = Day * 31,
  7. Year = 365 * Day,
  8. AllTime = Year * 99
  9. }