RAMessageModel.h 774 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // RAMessageModel.h
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/9/14.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol RAMessageDelegate <NSObject>
  10. @optional
  11. - (void)refreshUI;
  12. @end
  13. @interface RAMessageModel : NSObject
  14. @property (nonatomic,copy) NSString *title;
  15. @property (nonatomic,copy) NSString *message;
  16. @property (nonatomic,copy) NSString *date;
  17. @property (nonatomic,assign) BOOL isNew;
  18. @property (nonatomic,copy) NSString *orderID;
  19. @property (nonatomic,copy) NSString *orderType2;
  20. @property (nonatomic,copy) NSString *statusNo;
  21. @property (nonatomic,assign) NSInteger orderType;
  22. @property (nonatomic,assign,readonly) CGFloat height;
  23. @property (nonatomic,weak) id<RAMessageDelegate> delegate;
  24. @end