app/@overflow/model/meta/MetaTargetCategory.ts
crusader aaf3e23966 ing
2018-08-27 00:15:10 +09:00

10 lines
192 B
TypeScript

import { MetaInfraType } from './MetaInfraType';
export interface MetaTargetCategory {
id?: number;
metaInfraType?: MetaInfraType;
key?: string;
name?: string;
createDate?: Date;
}