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