You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System;using System.Collections.Generic;using System.Windows.Forms;using System.Drawing.Imaging;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ShenTun.Camera.AForgeL{
internal class DeviceItem { public int Index { get; set; }
public string Name { get; set; } }
internal class VideoPixelItem { public int Index { get; set; } public string Text { get; set; } }
internal class ImgFormatItem { public ImageFormat Code { get; set; }
public string Name { get; set; }
} internal class PicSizMode { public int Code { get; set; }
public string Name { get; set; } }
internal class CommonResult { public bool Success { get; set; } }
internal class CommonRequest { public int Percentage { get; set; }
public Photo Photo { get; set; } }
}
|