namespace InABox.Mobile { public abstract class MobileVideoSource : MobileDocumentSource where TOptions : MobileVideoOptions, new() where TSource : MobileDocumentSource { protected MobileVideoSource(TOptions options) : base(options) { } protected override void ApplyOptions(MobileDocument document) { // Nothing to do here } } }