From 2cd9fa1ef3c5c63625dc287e25161670f78c96bc Mon Sep 17 00:00:00 2001 From: Le Chau Date: Fri, 26 Jun 2020 17:18:49 +0700 Subject: [PATCH] SmallRefactor: {APIPath} -> {APIPathModel} --- AIParkingApplication/ApiController.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AIParkingApplication/ApiController.cs b/AIParkingApplication/ApiController.cs index fd1e172..11015a9 100644 --- a/AIParkingApplication/ApiController.cs +++ b/AIParkingApplication/ApiController.cs @@ -333,7 +333,7 @@ namespace AIParkingApplication public bool IsSaveSystemLogs { get; set; } [JsonProperty("api")] - public APIPath APIPath { get; set; } + public APIPathModel APIPath { get; set; } [JsonProperty("camera1")] public CameraData CameraData1 { get; set; } @@ -371,7 +371,7 @@ namespace AIParkingApplication } - public class APIPath + public class APIPathModel { [JsonProperty("apiStatistics")] public APIProperties ApiStatistics { get; set; }