1
0
Files
yel-dspace-angular/src/app/core/submission/models/access-condition.model.ts
2022-01-24 19:54:21 +01:00

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;
}