From 30d0b6f90cd9cdc3ba3bb98f80f72c3ad8012e0e Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Fri, 13 Mar 2020 09:20:00 -0400 Subject: [PATCH] matching name change in model --- .../MVMCore/Models/ActionType/ActionShareModel.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/MVMCore/MVMCore/Models/ActionType/ActionShareModel.swift b/MVMCore/MVMCore/Models/ActionType/ActionShareModel.swift index 44cd06e..c40fbcd 100644 --- a/MVMCore/MVMCore/Models/ActionType/ActionShareModel.swift +++ b/MVMCore/MVMCore/Models/ActionType/ActionShareModel.swift @@ -8,7 +8,7 @@ import UIKit -class ActionShareModel: ActionModelProtocol { +@objcMembers public class ActionShareModel: ActionModelProtocol { //-------------------------------------------------- // MARK: - Properties //-------------------------------------------------- @@ -17,8 +17,8 @@ class ActionShareModel: ActionModelProtocol { public var actionType: String? public var title: String? - public var shareType: String - public var shareText: String + public var sharedType: String + public var sharedText: String public var extraParameters: JSONValueDictionary? public var analyticsData: JSONValueDictionary? @@ -26,8 +26,8 @@ class ActionShareModel: ActionModelProtocol { // MARK: - Initializer //-------------------------------------------------- - public init(shareText: String,shareType: String) { - self.shareType = shareType - self.shareText = shareText + public init(sharedText: String,sharedType: String) { + self.sharedType = sharedType + self.sharedText = sharedText } }