init
This commit is contained in:
15
Models/WebhookPayload.cs
Normal file
15
Models/WebhookPayload.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Alchegos.HCI.Models;
|
||||
|
||||
public class WebhookPayload
|
||||
{
|
||||
[JsonPropertyName("sessionId")]
|
||||
public string SessionId { get; set; } = string.Empty;
|
||||
|
||||
[JsonPropertyName("output")]
|
||||
public string? Output { get; set; }
|
||||
|
||||
[JsonPropertyName("action")]
|
||||
public string? Action { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user