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