mvm_core_ui/MVMCoreUI/Actions/ActionTopAlertModel.swift
Kevin G Christiano 8c662a0992 remove title
2020-04-20 14:22:54 -04:00

23 lines
582 B
Swift

//
// ActionTopAlertModel.swift
// MVMCore
//
// Created by Suresh, Kamlesh on 12/16/19.
// Copyright © 2019 myverizon. All rights reserved.
//
import Foundation
@objcMembers public class ActionTopAlertModel: ActionModelProtocol {
public static var identifier: String = "topAlert"
public var actionType: String = ActionTopAlertModel.identifier
public var pageType: String
public var extraParameters: JSONValueDictionary?
public var analyticsData: JSONValueDictionary?
public init(pageType: String) {
self.pageType = pageType
}
}