2020-08-24 23:41:15 +01:00
|
|
|
export class Attachment {
|
|
|
|
|
Id: number;
|
|
|
|
|
ParentId: string;
|
|
|
|
|
Sources: Sources;
|
2021-04-19 18:03:41 +01:00
|
|
|
Source?: Sources;
|
2020-08-24 23:41:15 +01:00
|
|
|
SourceId: string;
|
|
|
|
|
Description: string;
|
|
|
|
|
SourceName: string;
|
|
|
|
|
CreateDate: string;
|
|
|
|
|
Stakeholders: string;
|
|
|
|
|
Link: string;
|
2021-04-26 13:29:19 +01:00
|
|
|
ApplicationId?: string;
|
2020-08-24 23:41:15 +01:00
|
|
|
//Data: any;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-08 09:01:41 +01:00
|
|
|
export enum Sources
|
2020-08-24 23:41:15 +01:00
|
|
|
{
|
|
|
|
|
Undefined = 0,
|
|
|
|
|
webTRIX = 1,
|
|
|
|
|
K2 = 2,
|
|
|
|
|
Exchange = 3,
|
|
|
|
|
File = 4
|
2021-04-19 15:21:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export class EventAttachment {
|
|
|
|
|
|
|
|
|
|
Id?: string; // id do evento
|
|
|
|
|
ParentId: string;
|
|
|
|
|
Source: string;
|
|
|
|
|
SourceId: string;
|
|
|
|
|
Link?: string;
|
|
|
|
|
SerialNumber?: string;
|
|
|
|
|
ApplicationId: string;
|
2021-04-20 15:05:40 +01:00
|
|
|
SourceTitle: string;
|
|
|
|
|
|
2020-08-24 23:41:15 +01:00
|
|
|
}
|