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