mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 13:26:08 +00:00
53 lines
904 B
TypeScript
53 lines
904 B
TypeScript
export class Attachment {
|
|
Id: number;
|
|
ParentId: string;
|
|
Source?: Sources;
|
|
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
|
|
}
|
|
|
|
|
|
export class EventAttachment {
|
|
|
|
Id?: string; // id do evento
|
|
ParentId?: string;
|
|
Source: string;
|
|
SourceId: string;
|
|
Link?: string;
|
|
SerialNumber?: string;
|
|
ApplicationId: string;
|
|
SourceTitle: string;
|
|
|
|
}
|
|
|
|
export class EventAttachment_v2 {
|
|
|
|
sourceId: string;
|
|
sourceName: string;
|
|
description: string
|
|
applicationId: number
|
|
|
|
}
|
|
|
|
export class Atendees_v2 {
|
|
name: string;
|
|
emailAddress: string;
|
|
attendeeType: string;
|
|
wxUserId: number;
|
|
IsRequired: boolean;
|
|
} |