mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
27 lines
370 B
TypeScript
27 lines
370 B
TypeScript
|
|
/**
|
|
* A cosntrain that can be used when running a service
|
|
*/
|
|
export class LdnServiceConstraint {
|
|
/**
|
|
* The name of the constrain
|
|
*/
|
|
name: string;
|
|
|
|
/**
|
|
* The value of the constrain
|
|
*/
|
|
value: string;
|
|
}
|
|
|
|
export const EndorsmentConstrain = [
|
|
{
|
|
name: 'Type 1 Item',
|
|
value: 'Type1'
|
|
},
|
|
{
|
|
name: 'Type 2 Item',
|
|
value: 'Type2'
|
|
},
|
|
];
|