making reds vars public

This commit is contained in:
Jonathan Guthrie 2016-09-24 23:49:34 -04:00
parent a9bb2d4e0f
commit 9df8cb8623
1 changed files with 4 additions and 4 deletions

View File

@ -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