mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 21:06:06 +00:00
15 lines
262 B
TypeScript
15 lines
262 B
TypeScript
export interface IDraft {
|
|
ApplicationId: string;
|
|
Assunto: string;
|
|
DocDate: string;
|
|
DocId: string;
|
|
DocNumber: string;
|
|
FolderId: string;
|
|
Sender: string;
|
|
SourceDocId: string;
|
|
content: string;
|
|
path: string;
|
|
ownerId: string;
|
|
status: string;
|
|
}
|