making reds vars public
This commit is contained in:
parent
a9bb2d4e0f
commit
9df8cb8623
|
@ -9,10 +9,10 @@
|
||||||
import Foundation
|
import Foundation
|
||||||
|
|
||||||
public struct DataSourceCredentials {
|
public struct DataSourceCredentials {
|
||||||
var host: String = "localhost"
|
public var host: String = "localhost"
|
||||||
var port: Int = 0
|
public var port: Int = 0
|
||||||
var username: String = ""
|
public var username: String = ""
|
||||||
var password: String = ""
|
public var password: String = ""
|
||||||
|
|
||||||
public init() {
|
public init() {
|
||||||
// empty
|
// empty
|
||||||
|
|
Loading…
Reference in New Issue