18 lines
446 B
Objective-C
18 lines
446 B
Objective-C
//
|
|
// FaceSendInfo.h
|
|
// BberryCore
|
|
//
|
|
// Created by 卫明何 on 2017/9/29.
|
|
// Copyright © 2017年 chenran. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <NIMSDK/NIMSDK.h>
|
|
|
|
@interface FaceSendInfo : NSObject<NIMCustomAttachment>
|
|
|
|
@property (strong, nonatomic) NSArray *data; //faceRecieveInfos
|
|
@property (assign, nonatomic) long long uid;
|
|
@property (copy, nonatomic) NSDictionary *encodeAttachemt;
|
|
@end
|