20 lines
310 B
Objective-C
20 lines
310 B
Objective-C
//
|
|
// KBChattedCompanionModel.m
|
|
// keyBoard
|
|
//
|
|
// Created by Mac on 2026/1/28.
|
|
//
|
|
|
|
#import "KBChattedCompanionModel.h"
|
|
#import <MJExtension/MJExtension.h>
|
|
|
|
@implementation KBChattedCompanionModel
|
|
|
|
+ (NSDictionary *)mj_replacedKeyFromPropertyName {
|
|
return @{
|
|
@"companionId": @"id"
|
|
};
|
|
}
|
|
|
|
@end
|