dnet-applications/frontends/dnet-is-application/src/app/model/controller.model.ts

55 lines
932 B
TypeScript
Raw Normal View History

2023-01-20 11:39:34 +01:00
export interface ResourceType {
2023-01-19 14:47:52 +01:00
id:string
name:string
contentType:string
count:number
simple:boolean
}
2023-01-23 14:22:14 +01:00
export interface KeyValue {
k: string;
v: string;
}
2023-01-25 16:08:32 +01:00
export interface Module {
2023-01-23 14:22:14 +01:00
group: string;
name: string;
versions: string[];
files: string[];
2023-01-25 16:08:32 +01:00
}
2023-01-23 14:22:14 +01:00
2023-01-20 11:39:34 +01:00
export interface ProtocolParams {
name:string
label:string
type:string
optional:boolean
hasSelFunction:boolean
}
export interface Protocol {
id: string
params: ProtocolParams[]
2023-01-20 16:57:03 +01:00
}
export interface WfHistoryEntry {
processId: string,
name: string,
family: string,
status: string,
startDate: string,
endDate: string,
dsId?: string,
dsName?: string,
dsApi?: string,
details: Map<string,string>
2023-01-25 16:08:32 +01:00
}
export interface SimpleResource {
id: string,
name: string,
type: string,
description?: string,
creationDate?: string,
modificationDate?: string
}