ifish/Ifish/controllers/IfishTabControllers/消息/pushmassgaeModel/PushmassageModel.h

44 lines
753 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// PushmassageModel.h
// Ifish
//
// Created by imac on 16/3/30.
// Copyright © 2016年 imac. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface PushmassageModel : NSObject
//消息类型
@property(nonatomic,copy) NSString *massageType;
//推送消息body消息详情
@property(nonatomic,copy) NSString *massageBody;
//消息title
@property(nonatomic,copy) NSString *massageTitle;
@property(nonatomic,copy) NSString *pushId;
@property(nonatomic,copy) NSString *createTime;
@property(nonatomic,copy) NSString *deviceId;
@property(nonatomic,copy) NSString *showName;
@property(nonatomic,copy) NSString *userId;
@property(nonatomic,copy) NSString *url;
@property(nonatomic,copy) NSString *reportId;
@end