matcher/src/modules/configuration/queries/get-configuration.query.ts

10 lines
186 B
TypeScript

export class GetConfigurationQuery {
readonly domain: string;
readonly key: string;
constructor(domain: string, key: string) {
this.domain = domain;
this.key = key;
}
}