Created
September 3, 2019 22:50
-
-
Save DenisBronx/0102ea8fca4e133f3e600623a6bc54b8 to your computer and use it in GitHub Desktop.
Repository Pattern Network DTO
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
// Network DTO | |
data class NetworkProduct( | |
@SerializedName("id") | |
val id: String?, | |
@SerializedName("name") | |
val name: String?, | |
@SerializedName("nowPrice") | |
val nowPrice: Double?, | |
@SerializedName("wasPrice") | |
val wasPrice: Double? | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment