Files
dspace-angular/src/app/core/shared/bitstream-format.model.ts
2018-05-17 17:10:38 +02:00

26 lines
377 B
TypeScript

import { CacheableObject } from '../cache/object-cache.reducer';
import { ResourceType } from './resource-type';
export class BitstreamFormat implements CacheableObject {
shortDescription: string;
description: string;
mimetype: string;
supportLevel: number;
internal: boolean;
extensions: string;
self: string;
type: ResourceType;
uuid: string;
}