10 lines
295 B
TypeScript
10 lines
295 B
TypeScript
|
import { MetaSensorDisplayItem } from './MetaSensorDisplayItem';
|
||
|
import { MetaSensorItemKey } from './MetaSensorItemKey';
|
||
|
|
||
|
export interface MetaSensorDisplayMapping {
|
||
|
id?: number;
|
||
|
metaSensorDisplayItem?: MetaSensorDisplayItem;
|
||
|
metaSensorItemKey?: MetaSensorItemKey;
|
||
|
createDate?: Date;
|
||
|
}
|