/* * 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 { val key: K }