No Description

QRCodeScanResult.swift 256B

123456789101112131415
  1. //
  2. // QRCodeScanResult.swift
  3. // QRCodeScanner
  4. //
  5. // Created by FFIB on 2017/7/24.
  6. // Copyright © 2017年 FFIB. All rights reserved.
  7. //
  8. import UIKit
  9. public struct QRCodeScanResult {
  10. public let metadataType: String
  11. public let result: String
  12. }