Last active
October 10, 2017 20:20
-
-
Save dmytro-anokhin/cade579ddec317792d3a0c0dc3f5562d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Data model for color palette | |
open class CLRPalette : NSObject { | |
/// Name of color palette | |
open var name: String! | |
/// List of colors in palette | |
open var colors: [Any]! | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment