mvm_core_ui/MVMCoreUI/Actions/ActionTopAlertModel.swift
Pfeil, Scott Robert b302d2ff61 april jira tasks
2020-04-02 19:47:52 -04:00

22 lines
577 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
}
}