123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #import <Foundation/Foundation.h>
- @interface CYRToken : NSObject
- @property (nonatomic, strong) NSString *name;
- @property (nonatomic, strong) NSString *expression;
- @property (nonatomic, strong) NSDictionary *attributes;
- + (instancetype)tokenWithName:(NSString *)name expression:(NSString *)expression attributes:(NSDictionary *)attributes;
- @end
|