| 1234567891011121314151617 |
- using MeterPlugInLibrary;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CarMeterSystem
- {
- public class CarCache
- {
- /// <summary>
- /// 摄像头的开关类集合
- /// </summary>
- public static List<DhCameraShot> cameraShots { get; set; }
- }
- }
|