18 lines
481 B
Swift
18 lines
481 B
Swift
//
|
|
// ActionCollapseNotificationModel.swift
|
|
// MVMCore
|
|
//
|
|
// Created by Ryan on 3/17/20.
|
|
// Copyright © 2020 myverizon. All rights reserved.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
@objcMembers public class ActionCollapseNotificationModel: ActionModelProtocol {
|
|
public static var identifier: String = "collapseNotification"
|
|
public var actionType: String
|
|
public var extraParameters: JSONValueDictionary?
|
|
public var analyticsData: JSONValueDictionary?
|
|
public var title: String?
|
|
}
|