namespace SPMS.Application.DTOs.Push; public class BulkJobInfo { public string JobId { get; set; } = string.Empty; public string Status { get; set; } = "queued"; public long ServiceId { get; set; } public int TotalCount { get; set; } public int SentCount { get; set; } public int FailedCount { get; set; } public DateTime? StartedAt { get; set; } public DateTime? CompletedAt { get; set; } }