Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Refactored deserialization POJOs to allow usage of lazy fetching per …
Browse files Browse the repository at this point in the history
…cafeteria/week eatAPI endpoint
  • Loading branch information
Liqs-v2 committed Feb 2, 2022
1 parent 91bb73a commit b58dd4a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 26 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ package de.tum.`in`.tumcampusapp.component.ui.cafeteria.model.deserialization
import com.google.gson.annotations.SerializedName

data class CafeteriaResponse(
@SerializedName("canteens")
var cafeterias: List<CafeteriaData>
@SerializedName("number")
var calendarWeek: Int,
@SerializedName("year")
var year: Int,
@SerializedName("days")
var dishesForWeek: List<DailyMenu>
)

This file was deleted.

0 comments on commit b58dd4a

Please sign in to comment.