19 lines
420 B
Objective-C
19 lines
420 B
Objective-C
//
|
|
// FacePlayInfo.h
|
|
// BberryCore
|
|
//
|
|
// Created by 卫明何 on 2017/9/29.
|
|
// Copyright © 2017年 chenran. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "FaceReceiveInfo.h"
|
|
|
|
@interface FacePlayInfo : NSObject
|
|
|
|
@property (assign, nonatomic) double delay;
|
|
@property (strong, nonatomic) NIMMessage *message;
|
|
@property (strong, nonatomic) FaceReceiveInfo *faceReceiveInfo;
|
|
|
|
@end
|