76 lines
1.4 KiB
C#
76 lines
1.4 KiB
C#
using System.CodeDom.Compiler;
|
|
using System.Configuration;
|
|
using System.Diagnostics;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace VideoReader.Properties;
|
|
|
|
[CompilerGenerated]
|
|
[GeneratedCode("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")]
|
|
public sealed class Settings : ApplicationSettingsBase
|
|
{
|
|
private static Settings defaultInstance = (Settings)(object)SettingsBase.Synchronized((SettingsBase)(object)new Settings());
|
|
|
|
public static Settings Default => defaultInstance;
|
|
|
|
[UserScopedSetting]
|
|
[DebuggerNonUserCode]
|
|
[DefaultSettingValue("5M")]
|
|
public string BitRate
|
|
{
|
|
get
|
|
{
|
|
return (string)((SettingsBase)this)["BitRate"];
|
|
}
|
|
set
|
|
{
|
|
((SettingsBase)this)["BitRate"] = value;
|
|
}
|
|
}
|
|
|
|
[UserScopedSetting]
|
|
[DebuggerNonUserCode]
|
|
[DefaultSettingValue("71")]
|
|
public byte Chenal
|
|
{
|
|
get
|
|
{
|
|
return (byte)((SettingsBase)this)["Chenal"];
|
|
}
|
|
set
|
|
{
|
|
((SettingsBase)this)["Chenal"] = value;
|
|
}
|
|
}
|
|
|
|
[UserScopedSetting]
|
|
[DebuggerNonUserCode]
|
|
[DefaultSettingValue("1")]
|
|
public int Specification
|
|
{
|
|
get
|
|
{
|
|
return (int)((SettingsBase)this)["Specification"];
|
|
}
|
|
set
|
|
{
|
|
((SettingsBase)this)["Specification"] = value;
|
|
}
|
|
}
|
|
|
|
[UserScopedSetting]
|
|
[DebuggerNonUserCode]
|
|
[DefaultSettingValue("False")]
|
|
public bool SaveVideo
|
|
{
|
|
get
|
|
{
|
|
return (bool)((SettingsBase)this)["SaveVideo"];
|
|
}
|
|
set
|
|
{
|
|
((SettingsBase)this)["SaveVideo"] = value;
|
|
}
|
|
}
|
|
}
|