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.
28 lines
625 B
28 lines
625 B
// |
|
// VoiceAlarm.h |
|
// myWear |
|
// |
|
// Created by xTT on 2017/3/4. |
|
// Copyright © 2017年 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseModel.h" |
|
|
|
@class Device; |
|
|
|
@interface VoiceAlarm : baseModel |
|
|
|
@property (nonatomic, strong) NSString *voiceURL; |
|
@property (nonatomic, strong) NSString *voicePath; |
|
@property (nonatomic, strong) NSString *duration; |
|
@property (nonatomic, strong) NSData *content; |
|
@property (nonatomic, strong) NSString *week; |
|
@property (nonatomic, strong) NSString *time; |
|
@property (nonatomic, strong) NSString *text; |
|
|
|
|
|
|
|
- (void)deleteSuccess:(void (^)())success |
|
failure:(void (^)())failure; |
|
|
|
@end
|
|
|