mirror of
https://gitlab.com/mobicoop/v3/service/matcher.git
synced 2025-12-30 23:52:39 +00:00
10 lines
186 B
TypeScript
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;
|
|
}
|
|
}
|