/**
 * The configuration service respons
 */
type ResponseBase = {
    Status: string;
    StatusMessage?: string;
    Result: any;
};

export type { ResponseBase };
