19 lines
250 B
Objective-C
19 lines
250 B
Objective-C
//
|
|
// NobleInfo.m
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/1/3.
|
|
//
|
|
|
|
#import "NobleInfo.h"
|
|
|
|
@implementation NobleInfo
|
|
|
|
+ (NSDictionary *)objectClassInArray {
|
|
return @{
|
|
@"returnProfits": [PINobleRebateModel class],
|
|
};
|
|
}
|
|
|
|
@end
|