Loading...
Searching...
No Matches
NCMapFilterCondition.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
24DEFAULT_EXPORT_ATTRIBUTE
25@interface NCMapFilterCondition : NSObject
26
30- (nonnull instancetype)initWithProperty:(nonnull NSString *)property
31 values:(nonnull NSArray<NSString *> *)values;
32
36+ (nonnull instancetype)mapFilterConditionWithProperty:(nonnull NSString *)property
37 values:(nonnull NSArray<NSString *> *)values;
38
42@property (nonatomic, readonly, nonnull) NSString * property;
43
47@property (nonatomic, readonly, nonnull) NSArray<NSString *> * values;
48
49@end