Files
ISA-Frontend/apps/isa-app/src/swagger/checkout/checkout-configuration.ts
Lorenz Hilpert f37dfd41f1 Merged PR 1813: Strukturanpassung
Related work items: #4832
2024-10-16 14:07:57 +00:00

17 lines
328 B
TypeScript

/* tslint:disable */
import { Injectable } from '@angular/core';
/**
* Global configuration for Checkout services
*/
@Injectable({
providedIn: 'root',
})
export class CheckoutConfiguration {
rootUrl: string = 'https://isa-test.paragon-data.net';
}
export interface CheckoutConfigurationInterface {
rootUrl?: string;
}