Make protocols public

This commit is contained in:
Oleksii Dykan
2018-01-26 10:20:03 +01:00
parent 04facd2f6d
commit 587db265cd

View File

@@ -8,13 +8,13 @@
import Foundation
protocol GeoPointType: Codable {
public protocol GeoPointType: Codable {
var latitude: Double { get }
var longitude: Double { get }
init(latitude: Double, longitude: Double)
}
protocol DocumentReferenceType: Codable {}
public protocol DocumentReferenceType: Codable {}
open class FirestoreDecoder {
public init() {}