wireguard-android/app/src/main/java/com/wireguard/android/util/Keyed.java

10 lines
164 B
Java
Raw Normal View History

package com.wireguard.android.util;
/**
* Interface for objects that have a identifying key of the given type.
*/
public interface Keyed<K> {
K getKey();
}