增加房间

This commit is contained in:
liyuhua
2024-03-07 16:56:48 +08:00
parent 3783cc5c95
commit bfee907f9e
45 changed files with 1191 additions and 29 deletions

View File

@@ -0,0 +1,18 @@
//
// RoomQuitItemModel.swift
// yinmeng-ios
//
// Created by duoban on 2024/3/7.
//
import UIKit
enum RoomQuitClickType {
case quit,report
}
class RoomQuitItemModel: NSObject {
var type:RoomQuitClickType = .quit
var text = ""
var image = ""
}