This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
weserplaner/app/src/main/java/com/denizk0461/studip/model/CanteenOffer.kt
T

19 lines
470 B
Kotlin
Raw Normal View History

package com.denizk0461.studip.model
import androidx.room.ColumnInfo
//@Entity(tableName = "offers")
data class CanteenOffer(
// @PrimaryKey val id: Int,
val itemId: Int,
val date: String,
val dateId: Int,
val category: String,
val categoryId: Int,
val canteen: String,
val canteenId: Int,
val title: String,
val price: String, // price for students
@ColumnInfo(name = "dietary_preferences") val dietaryPreferences: String,
)