Files
Ayay/SHH.CameraSdk/Controllers/Dto/UpdateProcessingRequest.cs
twice109 2ee25a4f7c 支持通过网页增加、删除、修改摄像头配置信息
支持摄像头配置信息中句柄的设置,并实测有效
2025-12-28 08:07:55 +08:00

13 lines
406 B
C#

namespace SHH.CameraSdk
{
public class UpdateProcessingRequest
{
public long DeviceId { get; set; }
public bool EnableShrink { get; set; }
public bool EnableExpand { get; set; }
public int TargetWidth { get; set; }
public int TargetHeight { get; set; }
public bool EnableBrightness { get; set; }
public int Brightness { get; set; }
}
}