Files
2020-08-04 05:34:09 +03:00

16 lines
251 B
Swift

//
// Device.swift
// TPInAppReceiptTests
//
// Created by Pavel Tikhonenko on 19.06.2020.
// Copyright © 2020 Pavel Tikhonenko. All rights reserved.
//
import Foundation
protocol Device
{
var receipt: Data { get }
var uuid: String { get }
}