RemoteSystemActionResponse.cs 308 B

123456789101112
  1. using System.Text.Json.Serialization;
  2. namespace NetworkTool.Client.Models;
  3. public sealed class RemoteSystemActionResponse
  4. {
  5. [JsonPropertyName("action")]
  6. public string Action { get; init; } = string.Empty;
  7. [JsonPropertyName("task_id")]
  8. public string TaskId { get; init; } = string.Empty;
  9. }