2
0

DeviceViewController.h 339 B

1234567891011121314151617
  1. //
  2. // ThingsViewController.h
  3. // WildFireChat
  4. //
  5. // Created by Tom Lee on 2020/4/26.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "Device.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface DeviceViewController : UIViewController
  12. @property(nonatomic, strong)Device *device;
  13. @end
  14. NS_ASSUME_NONNULL_END