Files
midi_ios/TUIKit/TUIRoomKit/Source/Common/Components/SandBoxBroswer/RoomFileBroswerModel.swift

20 lines
321 B
Swift
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// RoomFileBroswerModel.swift
// DemoApp
//
// Created by CY zhao on 2023/7/4.
//
import Foundation
class RoomFileBroswerModel: NSObject {
var title: String
var path: String
init(title: String = "", path: String) {
self.title = title
self.path = path
super.init()
}
}