Skip to content

Instantly share code, notes, and snippets.

@dmytro-anokhin
Last active October 10, 2017 20:22
Show Gist options
  • Save dmytro-anokhin/b78c7e4884716ec240b2ff9ebe520818 to your computer and use it in GitHub Desktop.
Save dmytro-anokhin/b78c7e4884716ec240b2ff9ebe520818 to your computer and use it in GitHub Desktop.
NS_ASSUME_NONNULL_BEGIN
/// Data model for color palette
@interface CLRPalette : NSObject
/// Name of color palette
@property (nonatomic, nullable, copy) NSString *name;
/// List of colors in palette
@property (nonatomic, copy) NSArray<UIColor *> *colors;
@end
NS_ASSUME_NONNULL_END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment