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

33 lines
553 B
TypeScript
Raw Normal View History

export class Attachment {
Id: number;
ParentId: string;
Sources: Sources;
SourceId: string;
Description: string;
SourceName: string;
CreateDate: string;
Stakeholders: string;
Link: 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
ParentId: string;
Source: string;
SourceId: string;
Link?: string;
SerialNumber?: string;
ApplicationId: string;
}