17 lines
279 B
Objective-C
17 lines
279 B
Objective-C
//
|
|
// DDCustomAttachmentModel.m
|
|
// DingDangApp
|
|
//
|
|
// Created by 触海 on 2023/12/13.
|
|
//
|
|
|
|
#import "DDCustomAttachmentModel.h"
|
|
#import "NSObject+DDExtension.h"
|
|
|
|
@implementation DDCustomAttachmentModel
|
|
- (NSString *)encodeAttachment {
|
|
return [self dd_toJSONString];
|
|
}
|
|
|
|
@end
|