mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-11-02 15:53:55 +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 (
|
data class Feedback (
|
||||||
// Version of app
|
// Version of app
|
||||||
val version : String? = null,
|
var version : String? = null,
|
||||||
|
|
||||||
// API level of user's phone
|
// API level of user's phone
|
||||||
val apiLevel: String? = null,
|
var apiLevel: String? = null,
|
||||||
|
|
||||||
// Title/Description entered by user
|
// Title/Description entered by user
|
||||||
val title: String? = null,
|
var title: String? = null,
|
||||||
|
|
||||||
// Android version of user's device
|
// Android version of user's device
|
||||||
val androidVersion: String? = null,
|
var androidVersion: String? = null,
|
||||||
|
|
||||||
// Device Model of user's device
|
// Device Model of user's device
|
||||||
val deviceModel: String? = null,
|
var deviceModel: String? = null,
|
||||||
|
|
||||||
// Device manufacturer name
|
// Device manufacturer name
|
||||||
val deviceManufacturer: String? = null,
|
var deviceManufacturer: String? = null,
|
||||||
|
|
||||||
// Device name stored on user's device
|
// Device name stored on user's device
|
||||||
val device: String? = null,
|
var device: String? = null,
|
||||||
|
|
||||||
// network type user is having (Ex: Wifi)
|
// 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