This commit is contained in:
h z
2025-05-04 15:21:01 +01:00
commit 619ddc6ddf
70 changed files with 60624 additions and 0 deletions

15
Models/WebhookPayload.cs Normal file
View 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; }
}