Remove unused class: Lane

This commit is contained in:
DucDangAnh 2020-06-18 17:23:05 +07:00
parent 7ee31cc894
commit 9a2def05a2
2 changed files with 0 additions and 23 deletions

View File

@ -78,7 +78,6 @@
<Compile Include="AppConstant.cs" />
<Compile Include="C3DeviceController.cs" />
<Compile Include="Camera.cs" />
<Compile Include="Lane.cs" />
<Compile Include="LaneIn.cs">
<SubType>UserControl</SubType>
</Compile>

View File

@ -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
}
}