forked from hazza/dspace-angular
[CST-4506] Address feedback
This commit is contained in:
25
src/app/core/submission/models/access-condition.model.ts
Normal file
25
src/app/core/submission/models/access-condition.model.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* An interface to represent an access condition.
|
||||
*/
|
||||
export class AccessConditionObject {
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
Reference in New Issue
Block a user