From 0550305e3f1f2558588b6b87a8c1b4004437ad3b Mon Sep 17 00:00:00 2001 From: emkael Date: Fri, 12 Oct 2018 20:43:25 +0200 Subject: MySQL settings --- kurier/Properties/Settings.Designer.cs | 80 +++++++++++++++++++++++++++++----- 1 file changed, 68 insertions(+), 12 deletions(-) (limited to 'kurier/Properties/Settings.Designer.cs') diff --git a/kurier/Properties/Settings.Designer.cs b/kurier/Properties/Settings.Designer.cs index 4e8a361..6ba5ba7 100644 --- a/kurier/Properties/Settings.Designer.cs +++ b/kurier/Properties/Settings.Designer.cs @@ -8,23 +8,79 @@ // //------------------------------------------------------------------------------ -namespace kurier.Properties -{ - - +namespace kurier.Properties { + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase - { - + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default - { - get - { + + public static Settings Default { + get { return defaultInstance; } } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("localhost")] + public string HOST { + get { + return ((string)(this["HOST"])); + } + set { + this["HOST"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("3306")] + public string PORT { + get { + return ((string)(this["PORT"])); + } + set { + this["PORT"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("root")] + public string USER { + get { + return ((string)(this["USER"])); + } + set { + this["USER"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("")] + public string PASS { + get { + return ((string)(this["PASS"])); + } + set { + this["PASS"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("False")] + public bool CONFIGURED { + get { + return ((bool)(this["CONFIGURED"])); + } + set { + this["CONFIGURED"] = value; + } + } } } -- cgit v1.2.3