NSObject+UserModel.h
374 Bytes
//
// NSObject+UserModel.h
// CNLiveUserSystemDemo
//
// Created by iOS on 16/9/18.
// Copyright © 2016年 zhulin. All rights reserved.
//
#import <Foundation/Foundation.h>
@protocol UserModelDelegate <NSObject>
@optional
+(NSDictionary *)arrayContainModelClass;
@end
@interface NSObject (UserModel)
+ (instancetype)modelWithKeyValues:(NSDictionary *)dic;
@end