Here is a nice way to create a private typed class or struct.
struct LoginCredential {
let username: String
let password: String
static let system1 = LoginCredential(id: "[email protected]", password: "hello")
static let system2 = LoginCredential(id: "[email protected]", password: "hello")
}