summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Model/Options/UpdateCheck.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Model/Options/UpdateCheck.cs')
-rw-r--r--win/CS/HandBrakeWPF/Model/Options/UpdateCheck.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Model/Options/UpdateCheck.cs b/win/CS/HandBrakeWPF/Model/Options/UpdateCheck.cs
new file mode 100644
index 000000000..f762f3e6f
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Model/Options/UpdateCheck.cs
@@ -0,0 +1,24 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="UpdateCheck.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// Defines the UpdateCheck type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Model.Options
+{
+ using HandBrake.Interop.Attributes;
+
+ using HandBrakeWPF.Properties;
+
+ public enum UpdateCheck
+ {
+ [DisplayName(typeof(Resources), "UpdateCheck_Monthly")]
+ Monthly = 0,
+
+ [DisplayName(typeof(Resources), "UpdateCheck_Weekly")]
+ Weekly,
+ }
+}