You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
561 B
28 lines
561 B
// |
|
// 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
|
|
|