2025-12-28 08:07:55 +08:00
|
|
|
|
namespace SHH.CameraSdk
|
2025-12-27 14:16:50 +08:00
|
|
|
|
{
|
|
|
|
|
|
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; }
|
2025-12-28 08:07:55 +08:00
|
|
|
|
public bool EnableBrightness { get; set; }
|
|
|
|
|
|
public int Brightness { get; set; }
|
2025-12-27 14:16:50 +08:00
|
|
|
|
}
|
2025-12-28 08:07:55 +08:00
|
|
|
|
}
|