18 lines
459 B
Objective-C
18 lines
459 B
Objective-C
//
|
|
// setRemindWaterModel.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/3/18.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
//设置或获取 换水提醒成功 返回信息数据模型
|
|
@interface setRemindWaterModel : NSObject
|
|
@property(nonatomic,copy)NSString*todayremind;
|
|
@property(nonatomic,copy)NSString*waterremind;
|
|
@property(nonatomic,copy)NSString*remindDate;
|
|
@property(nonatomic) NSInteger remindcycle;
|
|
|
|
@end
|