Skip to content
Snippets Groups Projects
Commit 330079ee authored by Chris Albert's avatar Chris Albert
Browse files

feat: ketinggalan

parent 3f9d7256
No related merge requests found
package com.example.if3210_2024_android_aab.model
import com.google.gson.annotations.SerializedName
data class Item (
@SerializedName("name") val name: String,
@SerializedName("qty") val qty: Int,
@SerializedName("price") val price: Double,
)
data class ResponseItem (
@SerializedName("items") val items: ItemsWrapper,
)
data class ItemsWrapper (
@SerializedName("items") val items: List<Item>,
)
\ No newline at end of file
<vector android:height="24dp" android:tint="#000000"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M12,2C6.47,2 2,6.47 2,12s4.47,10 10,10 10,-4.47 10,-10S17.53,2 12,2z"/>
</vector>
<vector android:height="24dp" android:tint="#000000"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="@android:color/white" android:pathData="M21,19V5c0,-1.1 -0.9,-2 -2,-2H5c-1.1,0 -2,0.9 -2,2v14c0,1.1 0.9,2 2,2h14c1.1,0 2,-0.9 2,-2zM8.5,13.5l2.5,3.01L14.5,12l4.5,6H5l3.5,-4.5z"/>
</vector>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment