Files
doneit-web/src/app/models/draft.ts
T

15 lines
257 B
TypeScript
Raw Normal View History

2024-02-22 15:42:04 +01:00
interface Document {
ApplicationId: string;
Assunto: string;
DocDate: string;
DocId: string;
DocNumber: string;
FolderId: string;
Sender: string;
SourceDocId: string;
content: string;
path: string;
ownerId: string;
status: string;
}