1
0
Files
yel-dspace-angular/src/app/core/config/models/config-access-condition-option.model.ts
2021-02-11 10:46:45 +01:00

31 lines
512 B
TypeScript

/**
* Model class for an Access Condition
*/
export class AccessConditionOption {
/**
* The name for this Access Condition
*/
name: string;
/**
* A boolean representing if this Access Condition has a start date
*/
hasStartDate: boolean;
/**
* A boolean representing if this Access Condition has an end date
*/
hasEndDate: boolean;
/**
* Maximum value of the start date
*/
maxStartDate: string;
/**
* Maximum value of the end date
*/
maxEndDate: string;
}