v1
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user