16 lines
433 B
TypeScript
16 lines
433 B
TypeScript
import { MetaCrawler } from './MetaCrawler';
|
|
import { MetaSensorItemUnit } from './MetaSensorItemUnit';
|
|
import { MetaSensorItemType } from './MetaSensorItemType';
|
|
|
|
export interface MetaSensorDisplayItem {
|
|
id?: number;
|
|
key?: string;
|
|
displayName?: string;
|
|
description?: string;
|
|
crawler?: MetaCrawler;
|
|
unit?: MetaSensorItemUnit;
|
|
createDate?: Date;
|
|
default?: boolean;
|
|
itemType?: MetaSensorItemType;
|
|
}
|