13 lines
348 B
C#
13 lines
348 B
C#
using F4SD.ActionConnector.Enumerations;
|
|
using F4SD.ActionConnector.Payloads;
|
|
|
|
namespace F4SD.ActionConnector.Models
|
|
{
|
|
public sealed class ActionContext
|
|
{
|
|
public TriggerEvent TriggerEvent { get; internal set; }
|
|
public bool AwaitResult { get; internal set; }
|
|
public PayloadBase Payload { get; internal set; }
|
|
}
|
|
}
|