summary refs log tree commit diff
path: root/src/util/config/types/ClientConfiguration.ts
blob: 0d3c8490657ee6eb93ece2da80766bb710714f44 (plain) (blame)
1
2
3
4
5
6
import { ClientReleaseConfiguration } from ".";

export class ClientConfiguration {
    releases: ClientReleaseConfiguration = new ClientReleaseConfiguration();
    useTestClient: boolean = false;
}