You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
438 B
25 lines
438 B
// |
|
// DisturbBan.h |
|
// myWear |
|
// |
|
// Created by xTT on 2017/3/4. |
|
// Copyright © 2017年 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseModel.h" |
|
|
|
@class Device; |
|
|
|
@interface DisturbBan : baseModel |
|
|
|
@property (nonatomic, strong) NSString *week; |
|
@property (nonatomic, strong) NSString *starttime; |
|
@property (nonatomic, strong) NSString *endedtime; |
|
|
|
|
|
|
|
|
|
|
|
- (void)deleteSuccess:(void (^)())success |
|
failure:(void (^)())failure; |
|
@end
|
|
|