Skip to content
This repository was archived by the owner on Apr 6, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions QBValidator/QBValidationRangeRule.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

@interface QBValidationRangeRule : QBValidationRule

@property (nonatomic, assign, readonly) NSNumber *minValue;
@property (nonatomic, assign, readonly) NSNumber *maxValue;
@property (nonatomic, copy, readonly) NSNumber *minValue;
@property (nonatomic, copy, readonly) NSNumber *maxValue;
@property (nonatomic, assign, readonly) BOOL inclusive;

+ (instancetype)ruleWithMinValue:(NSNumber *)minValue maxValue:(NSNumber *)maxValue inclusive:(BOOL)inclusive;
Expand Down
4 changes: 2 additions & 2 deletions QBValidator/QBValidationRangeRule.m
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

@interface QBValidationRangeRule ()

@property (nonatomic, assign, readwrite) NSNumber *minValue;
@property (nonatomic, assign, readwrite) NSNumber *maxValue;
@property (nonatomic, copy, readwrite) NSNumber *minValue;
@property (nonatomic, copy, readwrite) NSNumber *maxValue;
@property (nonatomic, assign, readwrite) BOOL inclusive;

@end
Expand Down