mirror of
https://github.com/seerr-team/seerr.git
synced 2026-01-21 22:12:04 -05:00
15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
export interface UserSettingsGeneralResponse {
|
|
username?: string;
|
|
region?: string;
|
|
originalLanguage?: string;
|
|
}
|
|
|
|
export interface UserSettingsNotificationsResponse {
|
|
enableNotifications: boolean;
|
|
telegramBotUsername?: string;
|
|
discordId?: string;
|
|
telegramChatId?: string;
|
|
telegramSendSilently?: boolean;
|
|
pgpKey?: string;
|
|
}
|