WhiteObject.h 323 B

123456789101112131415161718192021
  1. //
  2. // WhiteModel.h
  3. // Whiteboard
  4. //
  5. // Created by yleaf on 2020/9/19.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <YYModel/YYModel.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface WhiteObject : NSObject
  11. + (instancetype)modelWithJSON:(id)json;
  12. - (NSString *)jsonString;
  13. - (NSDictionary *)jsonDict;
  14. @end
  15. NS_ASSUME_NONNULL_END