CarCache.cs 365 B

1234567891011121314151617
  1. using MeterPlugInLibrary;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CarMeterSystem
  8. {
  9. public class CarCache
  10. {
  11. /// <summary>
  12. /// 摄像头的开关类集合
  13. /// </summary>
  14. public static List<DhCameraShot> cameraShots { get; set; }
  15. }
  16. }