12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace COSXML.Model.Tag
- {
-
-
-
- [XmlRoot("Response")]
- public sealed class QRRecognitionResult
- {
-
-
-
- [XmlElement]
- public int CodeStatus;
-
-
-
- [XmlElement]
- public QRcodeRecognitionInfo QRcodeInfo;
-
-
-
- [XmlElement]
- public string ResultImage;
-
-
-
- public sealed class QRcodeRecognitionInfo
- {
-
-
-
- [XmlElement]
- public string CodeUrl;
-
-
-
- [XmlElement]
- public CodeLocationInfo CodeLocation;
- }
-
-
-
- public sealed class CodeLocationInfo
- {
-
-
-
- [XmlElement]
- public List<string> Point;
- }
- }
- }
|