This commit is contained in:
2023-11-13 14:43:13 +03:00
parent 5b875a1c1c
commit 6d3dfee00b
@@ -4,12 +4,11 @@ import com.google.gson.annotations.Expose
import com.google.gson.annotations.SerializedName import com.google.gson.annotations.SerializedName
import java.io.Serializable import java.io.Serializable
data class Product ( data class Product(
@SerializedName("Name") @Expose var name: String?, @SerializedName("Name") @Expose var name: String?,
@SerializedName("ImagePath") @Expose var imagePath: String?, @SerializedName("ImagePath") @Expose var imagePath: String?,
@SerializedName("Price") @Expose var price: Double?, @SerializedName("Price") @Expose var price: Double?,
@SerializedName("MenuItemId") @Expose var menuItemId: Int?, @SerializedName("MenuItemId") @Expose var menuItemId: Int?,
@SerializedName("GroupName") @Expose var groupName: String?, @SerializedName("GroupName") @Expose var groupName: String?,
@SerializedName("CustomTags") @Expose var customTags: String?, @SerializedName("CustomTags") @Expose var customTags: String?,
@SerializedName("Expr1") @Expose var portion: String?
): Serializable ): Serializable