13 lines
264 B
Kotlin
13 lines
264 B
Kotlin
|
/*
|
||
|
* 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
|
||
|
}
|