//
//  QRCodeScanResult.swift
//  QRCodeScanner
//
//  Created by FFIB on 2017/7/24.
//  Copyright © 2017年 FFIB. All rights reserved.
//

import UIKit

public struct QRCodeScanResult {
    public let metadataType: String
    public let result: String
}