argos/dmp-frontend/src/app/core/model/file/file-format.model.ts

10 lines
256 B
TypeScript

import { FileTransformerEntityType } from "@app/core/common/enum/file-transformer-entity-type";
export interface RepositoryFileFormat {
format: string;
hasLogo: boolean;
icon: string;
repositoryId: string;
entityTypes: FileTransformerEntityType[];
}