import { NucleoPermissaoByUsuarioGestor } from "../3RN/NucleoPermissaoByUsuarioGestor.model"; export interface IUsuario { Tenant_Id: number; Id: string; Usuario: string; Senha?: string; Nome: string; Email: string | null; Telefone: string | null; Cargo: string | null; DataCriacao: Date | null; DataUltimoAcesso: Date | null; Is_Bloqueado: boolean; Is_Active: boolean; Is_Externo: boolean; UserOutsystemsId: number | null; IdiomaId: number | null; InfraConfigLDAP: number | null; LastLogEstabId: string | null; LastLogSprint: string | null; ReadLastSprint: boolean | null; UsaErp: boolean; Force_PswChange: boolean | null; UsaChat: boolean; SenhaHash512: string | null; DtHoraValidadeLogin: Date | string; DtHoraValidadeInput: Date | string; IS_CHECKED: boolean; NOMEPESSOA: string; TXCNPJCPF: string; IS_PESSOA_VINCULADA: boolean; ENVIA_ALERTA_PADRAO: boolean; IsGestor: boolean; NucleosByGestor?: NucleoPermissaoByUsuarioGestor[] | null; HasPassword: boolean; LoginLDAP: boolean; }