|
@@ -0,0 +1,19 @@
|
|
|
|
+using InABox.Configuration;
|
|
|
|
+using InABox.Core;
|
|
|
|
+using System;
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+using System.Text;
|
|
|
|
+using static InABox.Core.DFLayoutVideoFieldProperties;
|
|
|
|
+
|
|
|
|
+namespace PRSClasses
|
|
|
|
+{
|
|
|
|
+ public class DFLayoutVideoSettings : GlobalConfigurationSettings
|
|
|
|
+ {
|
|
|
|
+ [IntegerEditor(ToolTip = "Maximum video length (sec)")]
|
|
|
|
+ public int DefaultMaximumVideoLength { get; set; } = 15;
|
|
|
|
+
|
|
|
|
+ [EnumLookupEditor(typeof(VideoQuality))]
|
|
|
|
+ public VideoQuality DefaultQuality { get; set; } = VideoQuality.Low;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|