Files
dspace-angular/src/app/core/submission/models/submission-upload-file-access-condition.model.ts
2021-02-11 10:46:45 +01:00

26 lines
404 B
TypeScript

/**
* An interface to represent bitstream's access condition.
*/
export class SubmissionUploadFileAccessConditionObject {
/**
* The access condition id
*/
id: string;
/**
* The access condition name
*/
name: string;
/**
* Possible start date of the access condition
*/
startDate: string;
/**
* Possible end date of the access condition
*/
endDate: string;
}