diff options
author | marcinzelent <zelent.marcin@protonmail.com> | 2017-11-20 14:36:20 +0100 |
---|---|---|
committer | marcinzelent <zelent.marcin@protonmail.com> | 2017-11-20 14:36:20 +0100 |
commit | f6f830d066635c91763dd1ae6248c8c189e6fe7e (patch) | |
tree | 7cf4d3315bda5829046e029cf52d2e2d9a167380 /AirPollutionWebApi/Models | |
parent | 7ff8524f57d6f4641e4a3dbea6ff6dbe9e346deb (diff) |
Added WebApi.
Diffstat (limited to 'AirPollutionWebApi/Models')
-rw-r--r-- | AirPollutionWebApi/Models/Reading.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/AirPollutionWebApi/Models/Reading.cs b/AirPollutionWebApi/Models/Reading.cs new file mode 100644 index 0000000..b829711 --- /dev/null +++ b/AirPollutionWebApi/Models/Reading.cs @@ -0,0 +1,12 @@ +using System; + +namespace AirPollutionWebApi.Models +{ + public class Reading + { + public DateTime TimeStamp { get; set; } + public int Co { get; set; } + public int No { get; set; } + public int So { get; set; } + } +} |