17 lines
353 B
Objective-C
17 lines
353 B
Objective-C
//
|
|
// TwoControlName.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 2017/6/14.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface TwoControlName : NSObject
|
|
@property (nonatomic,copy) NSString *lightName;
|
|
@property (nonatomic,copy) NSString *pumpName;
|
|
@property (nonatomic,copy) NSString *macAddress;
|
|
|
|
@end
|