summary refs log tree commit diff
path: root/src/util/config/types/EndpointConfiguration.ts
blob: 87baea31b72b93255e6c7169b891f96525d96271 (plain) (blame)
1
2
3
4
5
export class EndpointConfiguration {
	endpointClient: string | null = null;
	endpointPrivate: string | null = null;
	endpointPublic: string | null = null;
}