// // VideoUserModel.h // tongxin // // Created by Apple on 2019/9/6. // Copyright © 2019年 xTT. All rights reserved. // #import "baseModel.h" NS_ASSUME_NONNULL_BEGIN @interface VideoUserModel : baseModel @property (nonatomic,strong) NSString * imei; @property (nonatomic,strong) NSString * openid; @property (nonatomic,assign) int relationship_image_id; @property (nonatomic,strong) NSString * time; @property (nonatomic,strong) NSString * relationship; /** 是否选中 */ @property (nonatomic,assign) BOOL ifSelect; @end NS_ASSUME_NONNULL_END