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