| 123456789101112131415161718192021222324252627282930313233 |
- //
- // RAMessageModel.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/9/14.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @protocol RAMessageDelegate <NSObject>
- @optional
- - (void)refreshUI;
- @end
- @interface RAMessageModel : NSObject
- @property (nonatomic,copy) NSString *title;
- @property (nonatomic,copy) NSString *message;
- @property (nonatomic,copy) NSString *date;
- @property (nonatomic,assign) BOOL isNew;
- @property (nonatomic,copy) NSString *orderID;
- @property (nonatomic,copy) NSString *orderType2;
- @property (nonatomic,copy) NSString *statusNo;
- @property (nonatomic,assign) NSInteger orderType;
- @property (nonatomic,assign,readonly) CGFloat height;
- @property (nonatomic,weak) id<RAMessageDelegate> delegate;
- @end
|