create EventLogResponse to hold the direction of the user and the operational response.
#17
This commit is contained in:
parent
8d7b027b8c
commit
d50331fc04
@ -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; }
|
||||
}
|
||||
}
|
||||
@ -60,6 +60,7 @@
|
||||
<ItemGroup>
|
||||
<Compile Include="AppDetails.cs" />
|
||||
<Compile Include="DailyLogs.cs" />
|
||||
<Compile Include="EventLogResponse.cs" />
|
||||
<Compile Include="Group.cs" />
|
||||
<Compile Include="GroupList.cs" />
|
||||
<Compile Include="ILogger.cs" />
|
||||
|
||||
Loading…
Reference in New Issue
Block a user