From d50331fc041cd74679b7dd0aacb97f81784a822b Mon Sep 17 00:00:00 2001 From: "chris.watts90@outlook.com" Date: Sun, 16 Apr 2017 19:39:13 +0100 Subject: [PATCH] create EventLogResponse to hold the direction of the user and the operational response. #17 --- .../Interfaces/EventLogResponse.cs | 14 ++++++++++++++ .../WindowsDataCenter/Interfaces/Interfaces.csproj | 1 + 2 files changed, 15 insertions(+) create mode 100644 DataCenter_Windows/WindowsDataCenter/Interfaces/EventLogResponse.cs diff --git a/DataCenter_Windows/WindowsDataCenter/Interfaces/EventLogResponse.cs b/DataCenter_Windows/WindowsDataCenter/Interfaces/EventLogResponse.cs new file mode 100644 index 0000000..8331d70 --- /dev/null +++ b/DataCenter_Windows/WindowsDataCenter/Interfaces/EventLogResponse.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Interfaces +{ + public class LogEventResponse + { + public LogDirection Direction { get; set; } + public OperationResponse ProcessResponse { get; set; } + } +} diff --git a/DataCenter_Windows/WindowsDataCenter/Interfaces/Interfaces.csproj b/DataCenter_Windows/WindowsDataCenter/Interfaces/Interfaces.csproj index 70f72cc..2a53dee 100644 --- a/DataCenter_Windows/WindowsDataCenter/Interfaces/Interfaces.csproj +++ b/DataCenter_Windows/WindowsDataCenter/Interfaces/Interfaces.csproj @@ -60,6 +60,7 @@ +