-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfiguration.cs
More file actions
31 lines (29 loc) · 1.3 KB
/
Copy pathConfiguration.cs
File metadata and controls
31 lines (29 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* *******************************************************************************************************************
* Application: Chat GPT Extension
*
* Autor: Daniel Liedke
*
* Copyright © Daniel Liedke 2025
* Usage and reproduction in any manner whatsoever without the written permission of Daniel Liedke is strictly forbidden.
*
* Purpose: Store default model to use in extension GPT or Gemini
*
* *******************************************************************************************************************/
namespace ChatGPTExtension
{
public class Configuration
{
public int GptConfigured { get; set; } = 1; // Default to GPT
public bool ButtonsAtTop { get; set; } = false; // Default to bottom
public bool EnableCopyCode { get; set; } = true; // Default to enabled
// Proxy Configuration
public bool UseProxy { get; set; } = false;
public string ProxyServer { get; set; } = "";
public int ProxyPort { get; set; } = 8080;
public bool ProxyRequiresAuth { get; set; } = false;
public string ProxyUsername { get; set; } = "";
public string ProxyPassword { get; set; } = "";
public bool UseSystemProxy { get; set; } = false;
public string ProxyBypassList { get; set; } = "";
}
}