Files
Ayay/SHH.CameraSdk/Controllers/Dto/UpdateProcessingRequest.cs
2025-12-27 14:16:50 +08:00

20 lines
529 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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 EnableEnhance { get; set; }
public double BrightnessLevel { get; set; }
}
}