-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5d20b01
commit 363804b
Showing
4 changed files
with
57 additions
and
12 deletions.
There are no files selected for viewing
12 changes: 9 additions & 3 deletions
12
.../example/jetpack_compose_all_in_one/demos/currency_converter/data/dto/CurrencyResponse.kt
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
package com.example.jetpack_compose_all_in_one.demos.currency_converter.data.dto | ||
|
||
/** | ||
* Represents a response containing currency data. | ||
* | ||
* @property date The date of the response. | ||
* @property jpy The Japanese Yen value in the response. | ||
*/ | ||
data class CurrencyResponse( | ||
val date: String, | ||
val jpy: Double | ||
) | ||
val date: String, // Date of the response | ||
val jpy: Double // Japanese Yen value in the response | ||
) |
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
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
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