create EventLogResponse to hold the direction of the user and the operational response.

#17
This commit is contained in:
chris.watts90@outlook.com 2017-04-16 19:39:13 +01:00
parent 8d7b027b8c
commit d50331fc04
2 changed files with 15 additions and 0 deletions

View File

@ -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; }
}
}

View File

@ -60,6 +60,7 @@
<ItemGroup> <ItemGroup>
<Compile Include="AppDetails.cs" /> <Compile Include="AppDetails.cs" />
<Compile Include="DailyLogs.cs" /> <Compile Include="DailyLogs.cs" />
<Compile Include="EventLogResponse.cs" />
<Compile Include="Group.cs" /> <Compile Include="Group.cs" />
<Compile Include="GroupList.cs" /> <Compile Include="GroupList.cs" />
<Compile Include="ILogger.cs" /> <Compile Include="ILogger.cs" />