You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Shadowsocks.Interop.Settings;
- using Shadowsocks.Net.Settings;
- using Shadowsocks.PAC;
- using System.Collections.Generic;
-
- namespace Shadowsocks.WPF.Models
- {
- public class Settings
- {
- public AppSettings App { get; set; }
-
- public InteropSettings Interop { get; set; }
-
- public NetSettings Net { get; set; }
-
- public PACSettings PAC { get; set; }
-
- public List<Group> Groups { get; set; }
-
- public Settings()
- {
- App = new AppSettings();
- Interop = new InteropSettings();
- Net = new NetSettings();
- PAC = new PACSettings();
- Groups = new List<Group>();
- }
- }
- }
|