FLEXSystemLogMessage.h 413 B

12345678910111213141516171819
  1. //
  2. // FLEXSystemLogMessage.h
  3. // UICatalog
  4. //
  5. // Created by Ryan Olson on 1/25/15.
  6. // Copyright (c) 2015 f. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface FLEXSystemLogMessage : NSObject
  10. @property (nonatomic, strong) NSDate *date;
  11. @property (nonatomic, copy) NSString *sender;
  12. @property (nonatomic, copy) NSString *messageText;
  13. @property (nonatomic, assign) long long messageID;
  14. @end