16 lines
393 B
Objective-C
16 lines
393 B
Objective-C
//
|
|
// TemperatureSetModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 15/11/26.
|
|
// Copyright © 2015年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
// 设置温度 展示
|
|
@interface TemperatureSetModel : NSObject
|
|
@property(nonatomic,copy)NSString*title;
|
|
@property(nonatomic,copy)NSString*temperatureLabel;
|
|
@property(nonatomic,copy)NSString*status;//开关状态,新增
|
|
@end
|