1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-07-19 20:04:37 +02:00
TweetDuck/linux/TweetDuck/Configuration/SystemConfiguration.cs
2022-02-19 18:19:13 +01:00

13 lines
368 B
C#

using TweetLib.Core.Application;
using TweetLib.Core.Systems.Configuration;
namespace TweetDuck.Configuration {
sealed class SystemConfiguration : IConfigObject<SystemConfiguration>, IAppSystemConfiguration {
public bool UseSystemProxyForAllConnections => true;
public SystemConfiguration ConstructWithDefaults() {
return new SystemConfiguration();
}
}
}