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

10 lines
256 B
TypeScript
Raw Normal View History

import { FileTransformerEntityType } from "@app/core/common/enum/file-transformer-entity-type";
2024-03-22 12:49:26 +01:00
export interface RepositoryFileFormat {
2024-01-02 08:52:03 +01:00
format: string;
2024-01-17 13:47:32 +01:00
hasLogo: boolean;
2024-01-02 08:52:03 +01:00
icon: string;
2024-03-22 12:49:26 +01:00
repositoryId: string;
entityTypes: FileTransformerEntityType[];
2024-01-02 08:52:03 +01:00
}