Added the original class back and changed updated class slightly; Minor changes to factory

This commit is contained in:
Trevor Payne
2020-05-15 14:32:49 -05:00
parent 696f169ea4
commit 8fe586dfec
6 changed files with 508 additions and 323 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash.Essentials.DM.Config
{
public class InputPropertiesConfig
{
public string Name { get; set; }
public bool DisableHdcp { get; set; }
}
}