20 lines
529 B
C#
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; }
|
|
}
|
|
}
|