Skip to content

Instantly share code, notes, and snippets.

@tifoaudii
Created May 20, 2022 10:11
Show Gist options
  • Save tifoaudii/0b1453e8269bdfe563cd167669017672 to your computer and use it in GitHub Desktop.
Save tifoaudii/0b1453e8269bdfe563cd167669017672 to your computer and use it in GitHub Desktop.
extension Task: TaskModelConvertible {
func asTaskModel() -> TaskModel {
TaskModel(
title: title ?? "",
type: type ?? "",
deadline: deadline ?? Date(),
color: color,
isCompleted: isCompleted
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment