- using System.Text.Json.Serialization;
- namespace NetworkTool.Client.Models;
- public sealed class RemoteSystemActionResponse
- {
- [JsonPropertyName("action")]
- public string Action { get; init; } = string.Empty;
- [JsonPropertyName("task_id")]
- public string TaskId { get; init; } = string.Empty;
- }
|