inserido acesso dos usuários

This commit is contained in:
Reginaldo
2023-06-30 12:54:57 -03:00
parent 0816439595
commit a04cdfa77c
6 changed files with 235 additions and 83 deletions

View File

@@ -1,9 +1,17 @@
class LoginModel{
String login;
bool check;
bool CHECK;
String ID_USUARIO;
String DATA;
String CADASTRADO_POR;
String CIDADE;
String STATUS;
LoginModel({
required this.login,
required this.check,
required this.CHECK,
required this.ID_USUARIO,
required this.DATA,
required this.CADASTRADO_POR,
required this.CIDADE,
required this.STATUS
});
}