Files
yingmeng-ios-switf/yinmeng-ios/Modules/Chat/Keyboard/ChatMoreMnueConfig.swift
2024-02-29 23:49:12 +08:00

26 lines
394 B
Swift

//
// ChatMoreMnueConfig.swift
// yinmeng-ios
//
// Created by MaiMang on 2024/2/29.
//
import Foundation
class ChatMoreMnueConfig: NSObject {
var title: String?
var image: String?
var type: ChatMoreMenuType?
init(title: String, image: String, type: ChatMoreMenuType) {
super.init()
self.title = title
self.image = image
self.type = type
}
required override init() { }
}