vds_ios/VDS/Components/Notification/NotificationButtonModel.swift
2023-03-24 23:13:37 +05:30

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
}
}
}