10 lines
192 B
TypeScript
10 lines
192 B
TypeScript
|
import { MetaInfraType } from './MetaInfraType';
|
||
|
|
||
|
export interface MetaTargetCategory {
|
||
|
id?: number;
|
||
|
metaInfraType?: MetaInfraType;
|
||
|
key?: string;
|
||
|
name?: string;
|
||
|
createDate?: Date;
|
||
|
}
|