20 lines
372 B
Objective-C
20 lines
372 B
Objective-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
|