RemoteApplyTaskResponse.cs 311 B

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