mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-29 13:53:54 +01:00
Modified the data class to var for mutuability
This commit is contained in:
parent
0026ca5b5c
commit
47c2f2c481
1 changed files with 8 additions and 8 deletions
|
|
@ -5,26 +5,26 @@ package fr.free.nrw.commons.feedback.model
|
|||
*/
|
||||
data class Feedback (
|
||||
// Version of app
|
||||
val version : String? = null,
|
||||
var version : String? = null,
|
||||
|
||||
// API level of user's phone
|
||||
val apiLevel: String? = null,
|
||||
var apiLevel: String? = null,
|
||||
|
||||
// Title/Description entered by user
|
||||
val title: String? = null,
|
||||
var title: String? = null,
|
||||
|
||||
// Android version of user's device
|
||||
val androidVersion: String? = null,
|
||||
var androidVersion: String? = null,
|
||||
|
||||
// Device Model of user's device
|
||||
val deviceModel: String? = null,
|
||||
var deviceModel: String? = null,
|
||||
|
||||
// Device manufacturer name
|
||||
val deviceManufacturer: String? = null,
|
||||
var deviceManufacturer: String? = null,
|
||||
|
||||
// Device name stored on user's device
|
||||
val device: String? = null,
|
||||
var device: String? = null,
|
||||
|
||||
// network type user is having (Ex: Wifi)
|
||||
val networkType: String? = null
|
||||
var networkType: String? = null
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue