26 lines
394 B
Swift
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() { }
|
|
}
|