mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
21 lines
347 B
TypeScript
21 lines
347 B
TypeScript
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
|
|
} |