1234567891011121314151617 |
- //
- // ThingsViewController.h
- // WildFireChat
- //
- // Created by Tom Lee on 2020/4/26.
- // Copyright © 2020 WildFireChat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "Device.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface DeviceViewController : UIViewController
- @property(nonatomic, strong)Device *device;
- @end
- NS_ASSUME_NONNULL_END
|