Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 370 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 370 Bytes

KeychainSwiftProperty

import Foundation
import KeychainSwiftProperty
import KeychainSwift

class Keychain: KeychainProvider {
    let keychain: KeychainSwift = .init(keyPrefix: "app")
    
    @KeychainSwiftProperty(key: "stringProperty")
    var stringProperty: String?
    
    @KeychainSwiftProperty(key: "dataProperty")
    var dataProperty: Data?
}