YAKModelSedendaryReminder.h 589 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //
  2. // MCModelSedendaryReminder.h
  3. // MCKit
  4. //
  5. // Created by WengFei Wang on 21/05/2018
  6. // Copyright © 2016年 Rocfly. All rights reserved.
  7. //
  8. #import <B3BLESDK/YAKModel.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YAKModelSedendaryReminder : YAKModel
  11. /**
  12. enabled
  13. */
  14. @property (nonatomic, assign) BOOL enabled;
  15. /**
  16. timeOfSedendary
  17. */
  18. @property (nonatomic, assign) NSUInteger timeOfSedendary;
  19. /**
  20. timeOfBegin
  21. */
  22. @property (nonatomic, strong, nonnull) NSDate *timeOfBegin;
  23. /**
  24. timeOfEnd
  25. */
  26. @property (nonatomic, strong, nonnull) NSDate *timeOfEnd;
  27. @end
  28. NS_ASSUME_NONNULL_END