// // RAMessageModel.h // Apex And Drivers // // Created by Jack on 2018/9/14. // Copyright © 2018年 USAI. All rights reserved. // #import @protocol RAMessageDelegate @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 delegate; @end