12345678910111213141516171819202122 |
- //
- // NIMKitRobotTemplate.h
- // NIMKit
- //
- // Created by chris on 2017/6/25.
- // Copyright © 2017年 NetEase. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "NIMKitRobotTemplateLayout.h"
- @interface NIMKitRobotTemplate : NSObject<NIMKitRobotTemplateContainer>
- @property (nonatomic, copy) NSString *templateId;
- @property (nonatomic, copy) NSString *param;
- @property (nonatomic, copy) NSString *version;
- @property (nonatomic, strong) NSMutableArray<NIMKitRobotTemplateLayout *> *items;
- @end
|