CST-11048 First commit

This commit is contained in:
Sondissimo
2023-09-18 13:26:10 +02:00
parent 9b556fd703
commit 24a0af1e9a
32 changed files with 1297 additions and 2 deletions

View File

@@ -0,0 +1,26 @@
/**
* 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'
},
];