com.avito.runner.service.worker.device.Serial.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
package com.avito.runner.service.worker.device
public sealed class Serial {
public abstract val value: String
public data class Remote(override val value: String) : Serial() {
override fun toString(): String {
return value
}
}
public data class Local(override val value: String) : Serial() {
override fun toString(): String {
return value
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy