13 lines
406 B
C#
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; }
|
|
}
|
|
} |