export interface IAppVariableDefinition {
    key: string;
    scope?: string;
    type?: string;
    value?: string;
}
