/**
 * A simple key value pair class where the Key is always a string and the value can be anything.
 */
export interface KeyValuePair {
    Key: string;
    Value: any;
}
