forked from hazza/dspace-angular
26 lines
375 B
TypeScript
26 lines
375 B
TypeScript
/**
|
|
* 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;
|
|
}
|