export interface IIdentifiable<K> {
	/** The unique object identifier of type K. */
	id: K;
}