12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // MCModelSedendaryReminder.h
- // MCKit
- //
- // Created by WengFei Wang on 21/05/2018
- // Copyright © 2016年 Rocfly. All rights reserved.
- //
- #import <B3BLESDK/YAKModel.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YAKModelSedendaryReminder : YAKModel
- /**
- enabled
- */
- @property (nonatomic, assign) BOOL enabled;
- /**
- timeOfSedendary
- */
- @property (nonatomic, assign) NSUInteger timeOfSedendary;
- /**
- timeOfBegin
- */
- @property (nonatomic, strong, nonnull) NSDate *timeOfBegin;
- /**
- timeOfEnd
- */
- @property (nonatomic, strong, nonnull) NSDate *timeOfEnd;
- @end
- NS_ASSUME_NONNULL_END
|