| 123456789101112131415161718192021222324252627 |
- //
- // UserModel.h
- // AICity
- //
- // Created by 刘伟伟 on 2023/7/11.
- // Copyright © 2023 wei.z. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UserModel : NSObject
- + (instancetype)shareInstance;
- @property(nonatomic,copy)NSString *token;
- @property(nonatomic,assign)BOOL isLogin;
- +(NSString *)userToken;
- +(void)addCollect:(NSDictionary *)d;
- +(void)delCollect:(NSDictionary *)d;
- +(NSArray *)getCollect;
- +(BOOL)collectContainVid:(int)vid;
- +(UIImage *)imageWithColor:(UIColor *)color;
- +(void)addHistoryPlay:(NSDictionary *)d;
- @end
- NS_ASSUME_NONNULL_END
|