20 lines
372 B
C
20 lines
372 B
C
|
//
|
||
|
// NSObject+RNBranch.h
|
||
|
// RNBranch
|
||
|
//
|
||
|
// Created by Jimmy Dee on 1/26/17.
|
||
|
// Copyright © 2017 Branch Metrics. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
@class RNBranchProperty;
|
||
|
|
||
|
@interface NSObject(RNBranch)
|
||
|
|
||
|
+ (NSDictionary<NSString *, RNBranchProperty *> *)supportedProperties;
|
||
|
|
||
|
- (void)setSupportedPropertiesWithMap:(NSDictionary *)map;
|
||
|
|
||
|
@end
|