Revisão: Autenticação, Page Events, Page Expediente.

This commit is contained in:
Paulo Pinto
2020-08-21 00:22:51 +01:00
parent 65c4cabcbf
commit c046fd92c0
20 changed files with 268 additions and 192 deletions
+7
View File
@@ -0,0 +1,7 @@
export interface DailyWorkTask{
SerialNumber: string;
Folio: string;
Senders: string;
CreateDate: string;
}
+6
View File
@@ -0,0 +1,6 @@
export interface User {
username: string,
password: string,
domainName: string,
BasicAuthKey: string
}