Files
doneit-web/src/app/models/attachment.model.ts
T

38 lines
621 B
TypeScript
Raw Normal View History

export class Attachment {
Id: number;
ParentId: string;
2021-04-19 18:03:41 +01:00
Source?: Sources;
2021-05-14 11:05:46 +01:00
ApplicationId: number
CreateDate: string
Data: null| string
Description:string
Link: null
SourceId: string
SourceName: string
Stakeholders: string
//Data: any;
}
export enum Sources
{
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
2021-08-03 12:24:34 +01:00
ParentId?: string;
2021-04-19 15:21:35 +01:00
Source: string;
SourceId: string;
Link?: string;
SerialNumber?: string;
ApplicationId: string;
2021-04-20 15:05:40 +01:00
SourceTitle: string;
2021-08-03 12:24:34 +01:00
}