using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ShenTun.ImageCollection.Common { public class DeviceItem { public int index { get; set; } public string text { get; set; } } public class VideoPixelItem { public int index { get; set; } public string text { get; set; } public int width { get; set; } } }