You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
814 B

using NetSDKCS;
namespace BrakeMachine.Brack;
public class EventInfo
{
public string ID { get; set; }
public string Time { get; set; }
public string Type { get; set; }
public string GroupID { get; set; }
public string Index { get; set; }
public string Count { get; set; }
public string PlateNumber { get; set; }
public string PlateType { get; set; }
public string PlateColor { get; set; }
public string VehicleType { get; set; }
public string VehicleColor { get; set; }
public string VehicleSize { get; set; }
public string LaneNumber { get; set; }
public string Address { get; set; }
public uint FileLenth { get; set; }
public uint OffSet { get; set; }
public byte[] Buffer { get; set; }
public NET_A_RECT_EX BoundingBox { get; set; }
}