-
Couldn't load subscription status.
- Fork 3
Open
Description
Current convention of MVP implementation requires you to have Data naming appended as part of the definition:
For example:
@DataCompat
private data class PersonData(val name: String, val nickname: String? = null, val age: Int)
which generates a Person.kt file that has a Person class.
Ideally we allow for more granular configuration through an annotation parameter:
For example:
@DataCompat("Person")
private data class PersonFooBarDefinition(val name: String, val nickname: String? = null, val age: Int)
Metadata
Metadata
Assignees
Labels
No labels