taskana/workplace/src/app/model/links.ts

9 lines
295 B
TypeScript

export class Links {
constructor(
public self: { 'href': string } = undefined,
public distributionTargets: { 'href': string } = undefined,
public accessItems: { 'href': string } = undefined,
public allWorkbasketUrl: { 'href': string } = undefined
) { }
}