16 lines
413 B
TypeScript
16 lines
413 B
TypeScript
import { MetaCrawler } from './MetaCrawler';
|
|
import { MetaSensorItemUnit } from './MetaSensorItemUnit';
|
|
import { MetaSensorItemType } from './MetaSensorItemType';
|
|
|
|
|
|
export interface MetaSensorDisplayItem {
|
|
id?: number;
|
|
key?: string;
|
|
name?: string;
|
|
metaCrawler?: MetaCrawler;
|
|
metaSensorItemUnit?: MetaSensorItemUnit;
|
|
metaSensorItemType?: MetaSensorItemType;
|
|
createDate?: Date;
|
|
default?: boolean;
|
|
}
|