secretive/SecretKit/SmartCard/SmartCardSecret.swift

15 lines
216 B
Swift
Raw Normal View History

2020-03-04 07:14:38 +00:00
import Foundation
import Combine
extension SmartCard {
public struct Secret: SecretKit.Secret {
2020-03-07 23:20:59 +00:00
2020-03-04 07:14:38 +00:00
public let id: Data
2020-03-07 23:20:59 +00:00
public var name: String
2020-03-04 07:14:38 +00:00
public let publicKey: Data
}
}