14 lines
343 B
Swift
14 lines
343 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.my-files.library.data-models.keychain.key.account"
|
|
}
|
|
}
|