// Copyright (c) 2020 Sendanor. All rights reserved. export enum RootRoutePath { INDEX = "/", LOGIN = "/login", LOGOUT = "/logout", DOMAINS = "/domains", } export enum DomainRoutePath { INDEX = "/", HOSTS = "/hosts", GROUPS = "/groups", } export const SIZE_PARAM_NAME = "size"; export const PAGE_PARAM_NAME = "page"; export const SEARCH_PARAM_NAME = "search";