15 lines
344 B
C#
15 lines
344 B
C#
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; }
|
|
} |