diff options
author | marcinzelent <zelent.marcin@gmail.com> | 2017-11-27 13:56:31 +0100 |
---|---|---|
committer | marcinzelent <zelent.marcin@gmail.com> | 2017-11-27 13:56:31 +0100 |
commit | 5b0a861c151fb99334e55438f795b1c5921ca5d8 (patch) | |
tree | 727ea0dddde419f40c85038e1dc3f526e2e347b7 /AirPollutionWebApi/Models/Reading.cs | |
parent | d93cd5af6b53c1d66f0633506bad5d7e83d64710 (diff) |
Changed reading types to double.
Diffstat (limited to 'AirPollutionWebApi/Models/Reading.cs')
-rw-r--r-- | AirPollutionWebApi/Models/Reading.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/AirPollutionWebApi/Models/Reading.cs b/AirPollutionWebApi/Models/Reading.cs index f211407..0d7ff39 100644 --- a/AirPollutionWebApi/Models/Reading.cs +++ b/AirPollutionWebApi/Models/Reading.cs @@ -4,8 +4,8 @@ { public int Id { get; set; } public int TimeStamp { get; set; } - public decimal Co { get; set; } - public decimal No { get; set; } - public decimal So { get; set; } + public double Co { get; set; } + public double No { get; set; } + public double So { get; set; } } } |