26 lines
336 B
Objective-C
26 lines
336 B
Objective-C
//
|
|
// EventRoomModel.m
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/5/15.
|
|
//
|
|
|
|
#import "EventRoomModel.h"
|
|
|
|
@implementation EventRoomModel
|
|
|
|
|
|
|
|
@end
|
|
|
|
@implementation EventRoomListModel
|
|
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{
|
|
@"selfRoom": [EventRoomModel class],
|
|
@"manageRooms": [EventRoomModel class],
|
|
};
|
|
}
|
|
|
|
@end
|