YOUPAILCUserCountModel.h 849 B

123456789101112131415161718192021222324
  1. //
  2. // YOUPAILCUserCountModel.h
  3. // LiveChat
  4. //
  5. // Created by 张灿 on 2018/8/28.
  6. // Copyright © 2018年 caicai. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface YOUPAILCUserCountModel : NSObject
  10. @property(nonatomic,assign)NSInteger youpaipfans_count; //粉丝总数
  11. @property(nonatomic,assign)NSInteger youpaipnew_fans_count; //新增粉丝
  12. @property(nonatomic,assign)NSInteger youpaipfollow_count; //关注总数
  13. @property(nonatomic,assign)NSInteger youpaipvisitor_count; //访客总数
  14. @property(nonatomic,assign)NSInteger youpaipnew_visitor_count; //新增访客总数
  15. @property(nonatomic,assign)NSInteger youpaipviewer_count; //足迹
  16. @property(nonatomic,assign)NSInteger youpaipnew_videoTrendsLike_count; //新增点赞总数
  17. @property(nonatomic,assign)NSInteger youpaipvideoTrendsLike_count; //点赞总数
  18. @end