123456789101112131415161718 |
- //
- // GHManageModel.m
- // MSYOUPAI
- //
- // Created by You on 2024/5/22.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "GHManageModel.h"
- @implementation GHManageModel
- + (NSDictionary *)modelContainerPropertyGenericClass {
- return @{
- @"list": [GHListModel class],
- };
- }
- @end
|