| 12345678910111213141516171819202122232425 |
- //
- // WBModel.m
- // YYKitExample
- //
- // Created by ibireme on 15/9/4.
- // Copyright (c) 2015 ibireme. All rights reserved.
- //
- #import "WBModel.h"
- @implementation WBImageModel
- @end
- @implementation WBLikeListModel
- @end
- @implementation WBModel
- + (NSDictionary *)mj_objectClassInArray{
- return @{@"like_list":@"WBLikeListModel"};
- }
- @end
|