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.

51 lines
943 B

1 month ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Windows.Forms;
  4. using System.Drawing.Imaging;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace ShenTun.Camera.AForgeL
  9. {
  10. internal class DeviceItem
  11. {
  12. public int Index { get; set; }
  13. public string Name { get; set; }
  14. }
  15. internal class VideoPixelItem
  16. {
  17. public int Index { get; set; }
  18. public string Text { get; set; }
  19. }
  20. internal class ImgFormatItem
  21. {
  22. public ImageFormat Code { get; set; }
  23. public string Name { get; set; }
  24. }
  25. internal class PicSizMode
  26. {
  27. public int Code { get; set; }
  28. public string Name { get; set; }
  29. }
  30. internal class CommonResult
  31. {
  32. public bool Success { get; set; }
  33. }
  34. internal class CommonRequest
  35. {
  36. public int Percentage { get; set; }
  37. public Photo Photo { get; set; }
  38. }
  39. }