27 lines
602 B
Objective-C
27 lines
602 B
Objective-C
//
|
|
// IfishAttachment.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/10/11.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
//自定义爱鱼奇官方帐号推送消息 在消息扩展中已经做 这个是自定义消息的以后用 可以按需求重新写,下面没用
|
|
|
|
#import <NIMSDK/NIMSDK.h>
|
|
|
|
@interface IfishAttachment : NSObject<NIMCustomAttachment>
|
|
|
|
@property (nonatomic,copy) NSString *pushlink;
|
|
|
|
@property (nonatomic,copy) NSString *timestamp;
|
|
|
|
@property (nonatomic,copy) NSString *pushType;
|
|
|
|
@property (nonatomic,copy) NSString *pushId;
|
|
|
|
|
|
|
|
@end
|