WBModel.m 345 B

12345678910111213141516171819202122232425
  1. //
  2. // WBModel.m
  3. // YYKitExample
  4. //
  5. // Created by ibireme on 15/9/4.
  6. // Copyright (c) 2015 ibireme. All rights reserved.
  7. //
  8. #import "WBModel.h"
  9. @implementation WBImageModel
  10. @end
  11. @implementation WBLikeListModel
  12. @end
  13. @implementation WBModel
  14. + (NSDictionary *)mj_objectClassInArray{
  15. return @{@"like_list":@"WBLikeListModel"};
  16. }
  17. @end