Files
Ayay/SHH.CameraSdk/Controllers/Dto/UpdateProcessingRequest.cs

13 lines
406 B
C#
Raw Normal View History

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