mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-02-16 10:58:33 -05:00
Initial support for custom reporting
This commit is contained in:
13
Reporting/DailySummary.cs
Normal file
13
Reporting/DailySummary.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user