summaryrefslogtreecommitdiffhomepage
path: root/android/app/src
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2022-09-12 13:27:03 +0200
committerAlbin <albin@mullvad.net>2022-09-12 16:09:50 +0200
commitb0b903e356c589c555a5c38386bf414b15fc9242 (patch)
tree8373dbc6eebaabaddf4cea4e5d9b1fbce9804bb1 /android/app/src
parent39e4f9fc291d9290805128f0d59b06fe82619764 (diff)
downloadmullvadvpn-b0b903e356c589c555a5c38386bf414b15fc9242.tar.xz
mullvadvpn-b0b903e356c589c555a5c38386bf414b15fc9242.zip
Expose device creation date to kotlin
Diffstat (limited to 'android/app/src')
-rw-r--r--android/app/src/main/kotlin/net/mullvad/mullvadvpn/model/Device.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/model/Device.kt b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/model/Device.kt
index ee34bc968f..a9ad4ec874 100644
--- a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/model/Device.kt
+++ b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/model/Device.kt
@@ -8,7 +8,8 @@ data class Device(
val id: String,
val name: String,
val pubkey: ByteArray,
- val ports: ArrayList<DevicePort>
+ val ports: ArrayList<DevicePort>,
+ val created: String
) : Parcelable {
// Generated by Android Studio
override fun equals(other: Any?): Boolean {