export interface IAccessListItem {
    [key: string]: string;
}
export interface IAccessList {
    [key: string]: IAccessListItem;
}
