| 1234567891011121314151617181920 | 
							- 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 : IGlobalConfigurationSettings
 
-     {
 
-         [Comment("Maximum video length (sec)")]
 
-         [IntegerEditor]
 
-         public int DefaultMaximumVideoLength { get; set; } = 15;
 
-         [EnumLookupEditor(typeof(VideoQuality))]
 
-         public VideoQuality DefaultQuality { get; set; } = VideoQuality.Low;
 
-     }
 
- }
 
 
  |