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