/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */
/**
 * Represents a Thing entity.
 */
export interface Thing {
    /**
     * The type of the thing.
     */
    type: string;
    /**
     * The name of the thing.
     */
    name: string;
}
