19 lines
256 B
Objective-C
19 lines
256 B
Objective-C
//
|
|
// DoricContext.h
|
|
// Doric
|
|
//
|
|
// Created by pengfei.zhou on 2019/7/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface DoricContext : NSObject
|
|
|
|
@property (nonatomic,strong) NSString *contextId;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|