2
0

Device.h 478 B

123456789101112131415161718192021
  1. //
  2. // Device.h
  3. // WildFireChat
  4. //
  5. // Created by Tom Lee on 2020/5/1.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface Device : NSObject
  11. @property(nonatomic, strong)NSString *deviceId;
  12. @property(nonatomic, strong)NSString *name;
  13. @property(nonatomic, strong)NSString *token;
  14. @property(nonatomic, strong)NSString *secret;
  15. @property(nonatomic, strong)NSArray *owners;
  16. @end
  17. NS_ASSUME_NONNULL_END