Started class for server, but did not get far yet

This commit is contained in:
Joshua Gutenplan
2017-03-13 17:53:20 -07:00
parent 1227038b55
commit ac1166b0f8
13 changed files with 46 additions and 8 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Crestron.SimplSharp;
namespace PepperDash_Core.Comm
{
public class DynamicTCPServer
{
public bool Secure { get; set; }
public ushort uSecure
{
set
{
if (value == 1)
Secure = true;
else if (value == 0)
Secure = false;
}
}
}
}