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.

68 lines
1.2 KiB

//
// JCAccountContact.h
// JCSDKOCShare
//
// Created by maikireton on 2019/12/18.
// Copyright © 2019 juphoon. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* @addtogroup
* @{
*/
/**
*
*/
@interface JCAccountContact : NSObject
/**
* / uid
*/
@property (nonatomic, copy) NSString *serverUid;
/**
* /
* - @ref JCAccountContactTypeNone :
* - @ref JCAccountContactTypeStranger :
* - @ref JCAccountContactTypeSystem :
*/
@property (nonatomic) JCAccountContactType type;
/**
* /
*/
@property (nonatomic, copy) NSString *displayName;
/**
* /
*/
@property (nonatomic, copy) NSString *tag;
/**
*
* - true:
* - false:
*/
@property (nonatomic) bool dnd;
/**
*
* - @ref JCAccountContactChangeStateAdd :
* - @ref JCAccountContactChangeStateUpdate :
* - @ref JCAccountContactChangeStateRemove :
*/
@property (nonatomic) JCAccountContactChangeState changeType;
@end
/**
* @}
*/
NS_ASSUME_NONNULL_END