using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.Push; public class PushLogRequestDto { [JsonPropertyName("page")] public int Page { get; set; } = 1; [JsonPropertyName("size")] public int Size { get; set; } = 20; [JsonPropertyName("message_code")] public string? MessageCode { get; set; } [JsonPropertyName("device_id")] public long? DeviceId { get; set; } [JsonPropertyName("status")] public string? Status { get; set; } [JsonPropertyName("start_date")] public string? StartDate { get; set; } [JsonPropertyName("end_date")] public string? EndDate { get; set; } }