File tree 1 file changed +10
-10
lines changed
ExampleMVVM/Infrastructure/Network
1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -25,16 +25,16 @@ public class Endpoint<R>: ResponseRequestable {
25
25
26
26
public typealias Response = R
27
27
28
- public var path : String
29
- public var isFullPath : Bool
30
- public var method : HTTPMethodType
31
- public var headerParamaters : [ String : String ]
32
- public var queryParametersEncodable : Encodable ? = nil
33
- public var queryParameters : [ String : Any ]
34
- public var bodyParamatersEncodable : Encodable ? = nil
35
- public var bodyParamaters : [ String : Any ]
36
- public var bodyEncoding : BodyEncoding
37
- public var responseDecoder : ResponseDecoder
28
+ public let path : String
29
+ public let isFullPath : Bool
30
+ public let method : HTTPMethodType
31
+ public let headerParamaters : [ String : String ]
32
+ public let queryParametersEncodable : Encodable ?
33
+ public let queryParameters : [ String : Any ]
34
+ public let bodyParamatersEncodable : Encodable ?
35
+ public let bodyParamaters : [ String : Any ]
36
+ public let bodyEncoding : BodyEncoding
37
+ public let responseDecoder : ResponseDecoder
38
38
39
39
init ( path: String ,
40
40
isFullPath: Bool = false ,
You can’t perform that action at this time.
0 commit comments