using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MvvmScaffoldFrame48.Model.HikVisionCamera { /// /// 摄像头图片大小 /// public class CameraImageSizeCModel { /// /// 图像宽 /// public int Width { get; set; } /// /// 图像高 /// public int Height { get; set; } } }