mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
26 lines
377 B
TypeScript
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;
|
|
|
|
}
|