Initial support for custom reporting

This commit is contained in:
2015-03-14 21:07:18 -04:00
parent 60fa893205
commit 340a486f95
4 changed files with 56 additions and 1 deletions

13
Reporting/DailySummary.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
namespace WeatherService.Reporting
{
public class DailySummary
{
public DateTimeOffset? Date { get; set; }
public int Count { get; set; }
public double Minimum { get; set; }
public double Maximum { get; set; }
public double Average { get; set; }
}
}