From 9a2def05a2fb3b8154465695016ad6cd0f7a2df9 Mon Sep 17 00:00:00 2001 From: DucDangAnh Date: Thu, 18 Jun 2020 17:23:05 +0700 Subject: [PATCH] Remove unused class: Lane --- .../AIParkingApplication.csproj | 1 - AIParkingApplication/Lane.cs | 22 ------------------- 2 files changed, 23 deletions(-) delete mode 100644 AIParkingApplication/Lane.cs diff --git a/AIParkingApplication/AIParkingApplication.csproj b/AIParkingApplication/AIParkingApplication.csproj index 5dfc654..ccfcab2 100644 --- a/AIParkingApplication/AIParkingApplication.csproj +++ b/AIParkingApplication/AIParkingApplication.csproj @@ -78,7 +78,6 @@ - UserControl diff --git a/AIParkingApplication/Lane.cs b/AIParkingApplication/Lane.cs deleted file mode 100644 index da99593..0000000 --- a/AIParkingApplication/Lane.cs +++ /dev/null @@ -1,22 +0,0 @@ -namespace AIParkingApplication -{ - public class Lane - { - private LaneType laneType; - private string vehicleVideoStream; - private string plateVideoStream; - - public Lane(LaneType laneType, string vehicleVideoStream, string plateVideoStream) - { - this.laneType = laneType; - this.vehicleVideoStream = vehicleVideoStream; - this.plateVideoStream = plateVideoStream; - } - } - - public enum LaneType - { - IN, - OUT - } -}