using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MvvmScaffoldFrame48.Model.StorageModel.HikVisionCamera { /// /// 线阵相机参数 /// public class LinescanCameraParameterModel { /// /// 相机序列号 /// public string CameraSNNum { get; set; } = string.Empty; /// /// 曝光时间 /// public float ExposureTimeValue { get; set; } = 100; /// /// 采集行频 /// public int AcquistionLineRateValue { get; set; } = 800; /// /// 图像宽度 /// public int Width { get; set; } = 0; /// /// 图像宽度 /// public int Height { get; set; } = 0; /// /// 图像X偏移 /// public int OffsetX { get; set; } = 0; /// /// 相机名称 /// public string CameraName { get; set; } = string.Empty; /// /// 设备名称 /// public string DeviceName { get; set; } = string.Empty; } }