9 lines
177 B
Swift
9 lines
177 B
Swift
import Foundation
|
|
|
|
/// Simple credential model for keychain storage demo.
|
|
nonisolated
|
|
struct Credential: Codable, Sendable {
|
|
let username: String
|
|
let password: String
|
|
}
|