14 lines
342 B
Swift
14 lines
342 B
Swift
|
//
|
||
|
// String+KeychainStorageKeys.swift
|
||
|
// DataModels
|
||
|
//
|
||
|
// Created by Javier Cicchelli on 11/12/2022.
|
||
|
// Copyright © 2022 Röck+Cöde. All rights reserved.
|
||
|
//
|
||
|
|
||
|
public extension String {
|
||
|
enum KeychainStorage {
|
||
|
public static let account = "com.rockncode.app.assignment.be-real.library.data-models.keychain.key.account"
|
||
|
}
|
||
|
}
|