summary refs log tree commit diff
path: root/src/connections/Twitter/TwitterSettings.ts
blob: e4aa58eb1ce3d794605756456b855992207cb616 (plain) (blame)
1
2
3
4
5
export class TwitterSettings {
	enabled: boolean = false;
	clientId: string | null = null;
	clientSecret: string | null = null;
}