Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save TheWildHorse/e990981b1828556801d26d33547aa335 to your computer and use it in GitHub Desktop.
Save TheWildHorse/e990981b1828556801d26d33547aa335 to your computer and use it in GitHub Desktop.
class Task: Object {
dynamic var name: String = ""
private dynamic var privateType: Int = TaskType.Daily.rawValue
var type: TaskType {
get { return TaskType(rawValue: privateType)! }
set { privateType = newValue.rawValue }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment