-
-
Save aleweichandt/ddaaec81ff22819134dce3389ab7d392 to your computer and use it in GitHub Desktop.
Mappings example
This file contains 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
fun Todo.toEntity() = TodoEntity( | |
uuid, value, body, completed | |
) | |
fun TodoEntity.toDomain() = Todo( | |
value, body, completed, uuid | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment