Skip to content

Instantly share code, notes, and snippets.

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