20 lines
405 B
Swift
20 lines
405 B
Swift
//
|
|
// NotificationButtonModel.swift
|
|
// VDS
|
|
//
|
|
// Created by Nadigadda, Sumanth on 24/03/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Notification {
|
|
public struct ButtonModel {
|
|
public var text: String
|
|
public var onClick: (Button) -> ()
|
|
public init(text: String, onClick: @escaping (Button) -> Void) {
|
|
self.text = text
|
|
self.onClick = onClick
|
|
}
|
|
}
|
|
}
|