export interface IGetModulesResponse {
    data: {
        id: number;
        nome: string;
        descricao: string;
        criarSituacoes: boolean;
    }[];
}
