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.

38 lines
818 B

1 month ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ShenTun.Camera.Common
  8. {
  9. public class DialogResponse
  10. {
  11. public int code { get; set; }
  12. public string message { get; set; }
  13. public Response data { get; set; }
  14. }
  15. public class Response{
  16. }
  17. public class PhotoResponse : Response
  18. {
  19. public string PhotoFormat { get; set; }
  20. public string Photo { get; set; }
  21. }
  22. public class RequestInterface
  23. {
  24. public int PhotoInterface { get; set; }
  25. public string ImageFormat { get; set; }
  26. public int CapturesTotal { get; set; }
  27. public int CapturesTimes { get; set; }
  28. public Boolean IsAutoConnect { get; set; }
  29. }
  30. }