summary refs log tree commit diff
path: root/src/util/config/types/subconfigurations/guild/Discovery.ts
blob: a7cb81db9fb07f2ff520c0122127890c44584700 (plain) (blame)
1
2
3
4
5
6
export class DiscoveryConfiguration {
	showAllGuilds: boolean = false;
	useRecommendation: boolean = false; // TODO: Recommendation, privacy concern?
	offset: number = 0;
	limit: number = 24;
}