/**
 * Model used to replace <any>.
 * Contains keys of type T.
 */
export interface GenericObject<T> {
    [key: string]: T;
}
