matching name change in model
This commit is contained in:
parent
53a464d346
commit
30d0b6f90c
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
import UIKit
|
import UIKit
|
||||||
|
|
||||||
class ActionShareModel: ActionModelProtocol {
|
@objcMembers public class ActionShareModel: ActionModelProtocol {
|
||||||
//--------------------------------------------------
|
//--------------------------------------------------
|
||||||
// MARK: - Properties
|
// MARK: - Properties
|
||||||
//--------------------------------------------------
|
//--------------------------------------------------
|
||||||
@ -17,8 +17,8 @@ class ActionShareModel: ActionModelProtocol {
|
|||||||
|
|
||||||
public var actionType: String?
|
public var actionType: String?
|
||||||
public var title: String?
|
public var title: String?
|
||||||
public var shareType: String
|
public var sharedType: String
|
||||||
public var shareText: String
|
public var sharedText: String
|
||||||
public var extraParameters: JSONValueDictionary?
|
public var extraParameters: JSONValueDictionary?
|
||||||
public var analyticsData: JSONValueDictionary?
|
public var analyticsData: JSONValueDictionary?
|
||||||
|
|
||||||
@ -26,8 +26,8 @@ class ActionShareModel: ActionModelProtocol {
|
|||||||
// MARK: - Initializer
|
// MARK: - Initializer
|
||||||
//--------------------------------------------------
|
//--------------------------------------------------
|
||||||
|
|
||||||
public init(shareText: String,shareType: String) {
|
public init(sharedText: String,sharedType: String) {
|
||||||
self.shareType = shareType
|
self.sharedType = sharedType
|
||||||
self.shareText = shareText
|
self.sharedText = sharedText
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user