blob: 1122f5527942ff29cb13a2e2623bcac221f02986 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Copyright © 2017-2021 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
}
|