23 lines
517 B
Objective-C
23 lines
517 B
Objective-C
//
|
|
// SetTimerModel.h
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/5/2.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "baseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface SetTimerModel : baseModel
|
|
@property(nonatomic,copy)NSString*selectorNumber;
|
|
@property(nonatomic,copy)NSString*selectorTime;
|
|
/// 控制组编号
|
|
@property(nonatomic,copy)NSString*groupNumber;
|
|
@property(nonatomic,copy)NSString*isOn;//时间定时器开关状态
|
|
@property(nonatomic,copy)NSString*crc16str;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|