25 lines
464 B
Objective-C
25 lines
464 B
Objective-C
//
|
|
// RemoteExtMassageModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/10/12.
|
|
// Copyright © 2016年 lianxiang. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface RemoteExtMassageModel : NSObject
|
|
|
|
@property (nonatomic,copy) NSString *pushlink;
|
|
|
|
@property (nonatomic,copy) NSString *timestamp;
|
|
|
|
@property (nonatomic,copy) NSString *pushType;
|
|
|
|
@property (nonatomic,copy) NSString *pushId;
|
|
|
|
@property (nonatomic,copy) NSString *pushTitle;
|
|
|
|
|
|
@end
|