19 lines
442 B
Objective-C
19 lines
442 B
Objective-C
//
|
|
// FourControlName.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 2017/6/15.
|
|
// Copyright © 2017年 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface FourControlName : NSObject
|
|
@property (nonatomic,copy) NSString *light1;
|
|
@property (nonatomic,copy) NSString *light2;
|
|
@property (nonatomic,copy) NSString *uvName;
|
|
@property (nonatomic,copy) NSString *pumpName;
|
|
@property (nonatomic,copy) NSString *macAddress;
|
|
|
|
@end
|