diff --git a/TRI_TCP_Client/TRI_TCP_Client/Log/LoggerEnum.cs b/TRI_TCP_Client/TRI_TCP_Client/Log/LoggerEnum.cs new file mode 100644 index 0000000..56b51af --- /dev/null +++ b/TRI_TCP_Client/TRI_TCP_Client/Log/LoggerEnum.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace TRI_TCP_Client.Log +{ + public enum LogType + { + All, + Information, + Debug, + Success, + Failure, + Warning, + Error + } +}