diff --git a/app/src/main/java/com/yaros/sweetshopviki/data/models/Product.kt b/app/src/main/java/com/yaros/sweetshopviki/data/models/Product.kt index 45be235..2ea55f4 100644 --- a/app/src/main/java/com/yaros/sweetshopviki/data/models/Product.kt +++ b/app/src/main/java/com/yaros/sweetshopviki/data/models/Product.kt @@ -4,12 +4,11 @@ import com.google.gson.annotations.Expose import com.google.gson.annotations.SerializedName import java.io.Serializable -data class Product ( +data class Product( @SerializedName("Name") @Expose var name: String?, @SerializedName("ImagePath") @Expose var imagePath: String?, @SerializedName("Price") @Expose var price: Double?, @SerializedName("MenuItemId") @Expose var menuItemId: Int?, @SerializedName("GroupName") @Expose var groupName: String?, @SerializedName("CustomTags") @Expose var customTags: String?, - @SerializedName("Expr1") @Expose var portion: String? ): Serializable \ No newline at end of file