app/@overflow/model/meta/MetaTargetCategory.ts

10 lines
192 B
TypeScript
Raw Normal View History

2018-08-26 15:15:10 +00:00
import { MetaInfraType } from './MetaInfraType';
export interface MetaTargetCategory {
id?: number;
metaInfraType?: MetaInfraType;
key?: string;
name?: string;
createDate?: Date;
}