YHUserSetting.h 757 B

123456789101112131415161718192021222324
  1. //
  2. // YHUserSetting.h
  3. // github: https://github.com/samuelandkevin
  4. //
  5. // Created by kun on 16/5/2.
  6. // Copyright © 2016年 HKP. All rights reserved.
  7. // 用户隐私设置
  8. #import <Foundation/Foundation.h>
  9. typedef NS_ENUM(NSInteger,Person){
  10. Person_All =0,//所有人
  11. Person_MyFrinds //好友
  12. };
  13. @interface YHUserSetting : NSObject
  14. @property (nonatomic, assign)Person whoCanReadMyInfo;//谁可以查看我的资料
  15. @property (nonatomic, assign)Person whoCanAddMetoFriend; //谁可以把我添加为好友
  16. @property (nonatomic, copy)NSArray * whoCannotReadMyDynamic; //不让他看我的动态
  17. @property (nonatomic, copy)NSArray * whoseDynamicIdonotRead; //不看他的动态
  18. @end