/**
 * The Asset Configuration Model
 */
export interface AssetConfigurationModel {
    /**
     * Key
     */
    key: string;
    /**
     * Name
     */
    name: string;
}
