using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.Push; public class JobCancelResponseDto { [JsonPropertyName("job_id")] public string JobId { get; set; } = string.Empty; [JsonPropertyName("status")] public string Status { get; set; } = "cancelled"; [JsonPropertyName("cancelled_count")] public int CancelledCount { get; set; } }