Skip to content

Commit

Permalink
⛏ Create Hook Response
Browse files Browse the repository at this point in the history
  • Loading branch information
furkandeveloper committed Aug 2, 2021
1 parent cb9f448 commit 4be1331
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/IronHook.Core/Primitives/HookResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace IronHook.Core.Primitives
{
public struct HookResponse
{
public Dictionary<string, string> Headers { get; set; }
public string Body { get; set; }
public int StatusCode { get; set; }
public bool IsExceeded { get; set; }
public string EventName { get; set; }

public string Url { get; set; }

public Guid RequestId { get; set; }

public string NotifyEmail { get; set; }
}
}

0 comments on commit 4be1331

Please sign in to comment.