1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // NIMRedPacketRequest.h
- // NIMLib
- //
- // Created by Netease.
- // Copyright © 2017年 Netease. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- /**
- * 红包服务类型
- */
- typedef NS_ENUM(NSInteger, NIMRedPacketServiceType)
- {
- /**
- * 金融魔方红包
- */
- NIMRedPacketServiceTypeJRMF = 1,
- };
- /**
- * 红包Token请求
- */
- @interface NIMRedPacketTokenRequest : NSObject
- /**
- * 红包服务类型
- */
- @property (nonatomic, assign) NIMRedPacketServiceType type;
- @end
- NS_ASSUME_NONNULL_END
|