You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
0 B

2 years ago
//
// JCAccountItem.h
// JCSDKOC
//
// Created by Ginger on 2018/6/8.
// Copyright © 2018年 juphoon. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "JCAccountConstants.h"
/**
* @addtogroup
* @{
*/
/**
2 years ago
*
*/
@interface JCAccountItem : NSObject
/**
*
2 years ago
*/
@property (nonatomic, copy) NSString* __nonnull userId;
2 years ago
/**
*
* - @ref JCAccountUserStatusError :
* - @ref JCAccountUserStatusNotFound :
* - @ref JCAccountUserStatusOffline : 线
* - @ref JCAccountUserStatusPush :
* - @ref JCAccountUserStatusOnline : 线
2 years ago
*/
@property (nonatomic, assign) JCAccountUserStatus status;
/**
* 0
*/
@property (nonatomic, copy) NSString *customStatus0;
/**
* 1
*/
@property (nonatomic, copy) NSString *customStatus1;
/**
* 2
*/
@property (nonatomic, copy) NSString *customStatus2;
/**
* 3
*/
@property (nonatomic, copy) NSString *customStatus3;
2 years ago
@end
/**
* @}
*/