wireguard-android/ui/src/main/java/com/wireguard/android/databinding/Keyed.kt

13 lines
264 B
Kotlin
Raw Normal View History

/*
* Copyright © 2020 WireGuard LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package com.wireguard.android.databinding
/**
* Interface for objects that have a identifying key of the given type.
*/
interface Keyed<K> {
val key: K
}