23 lines
288 B
Objective-C
23 lines
288 B
Objective-C
//
|
|
// RoomEnterModel.m
|
|
// YuMi
|
|
//
|
|
// Created by P on 2025/2/17.
|
|
//
|
|
|
|
#import "RoomEnterModel.h"
|
|
|
|
@implementation RoomEnterCPListModel
|
|
|
|
@end
|
|
|
|
@implementation RoomEnterModel
|
|
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{
|
|
@"cpList":RoomEnterCPListModel.class
|
|
};
|
|
}
|
|
|
|
@end
|