YHUserInfoManager.h 421 B

123456789101112131415161718192021
  1. //
  2. // YHUserInfoManager.h
  3. // github: https://github.com/samuelandkevin
  4. //
  5. // Created by kun on 16/4/25.
  6. // Copyright © 2016年 HKP. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "YHUserInfo.h"
  10. @interface YHUserInfoManager : NSObject
  11. /**
  12. * 当前登录的用户信息(单例)
  13. */
  14. @property (nonatomic, strong)YHUserInfo *userInfo;
  15. + (instancetype)sharedInstance;
  16. @end