123456789101112131415161718192021222324 |
- //
- // YOUPAILCUserCountModel.h
- // LiveChat
- //
- // Created by 张灿 on 2018/8/28.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface YOUPAILCUserCountModel : NSObject
- @property(nonatomic,assign)NSInteger youpaipfans_count; //粉丝总数
- @property(nonatomic,assign)NSInteger youpaipnew_fans_count; //新增粉丝
- @property(nonatomic,assign)NSInteger youpaipfollow_count; //关注总数
- @property(nonatomic,assign)NSInteger youpaipvisitor_count; //访客总数
- @property(nonatomic,assign)NSInteger youpaipnew_visitor_count; //新增访客总数
- @property(nonatomic,assign)NSInteger youpaipviewer_count; //足迹
- @property(nonatomic,assign)NSInteger youpaipnew_videoTrendsLike_count; //新增点赞总数
- @property(nonatomic,assign)NSInteger youpaipvideoTrendsLike_count; //点赞总数
- @end
|