From d93cd5af6b53c1d66f0633506bad5d7e83d64710 Mon Sep 17 00:00:00 2001 From: marcinzelent Date: Mon, 27 Nov 2017 13:47:12 +0100 Subject: Changed reading types to decimal. --- AirPollutionWebApi/Models/Reading.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'AirPollutionWebApi/Models') diff --git a/AirPollutionWebApi/Models/Reading.cs b/AirPollutionWebApi/Models/Reading.cs index 07f4599..f211407 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 int Co { get; set; } - public int No { get; set; } - public int So { get; set; } + public decimal Co { get; set; } + public decimal No { get; set; } + public decimal So { get; set; } } } -- cgit v1.2.3