6 lines
129 B
TypeScript
6 lines
129 B
TypeScript
export class RedditSettings {
|
|
enabled: boolean = false;
|
|
clientId: string | null = null;
|
|
clientSecret: string | null = null;
|
|
}
|