1
0
Fork 0
TweetDuck/linux/TweetDuck/Configuration/SystemConfiguration.cs

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();
}
}
}