23 lines
399 B
Objective-C
23 lines
399 B
Objective-C
//
|
|
// ReadTimerModel.h
|
|
// Ifish
|
|
//
|
|
// Created by Alex on 2019/5/3.
|
|
// Copyright © 2019 lianlian. All rights reserved.
|
|
//
|
|
|
|
#import "baseModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ReadTimerModel : baseModel
|
|
|
|
/// 灯编号
|
|
@property(nonatomic,copy)NSString*selectorName;
|
|
@property(nonatomic,copy)NSString*selectorNumber;
|
|
@property(nonatomic,copy)NSString*crc16str;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|