Save old value time

This commit is contained in:
Vladimir
2024-05-20 19:56:41 +04:00
parent 5c48e9803f
commit 0e69ee8e09
4 changed files with 22 additions and 7 deletions

View File

@@ -106,5 +106,17 @@ namespace RelaunchProcess.Properties {
this["restartNow"] = value;
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("30")]
public decimal timer {
get {
return ((decimal)(this["timer"]));
}
set {
this["timer"] = value;
}
}
}
}