using System.Text.Json.Serialization; namespace SPMS.Application.DTOs.Stats; public class HistoryListRequestDto { [JsonPropertyName("page")] public int Page { get; set; } = 1; [JsonPropertyName("size")] public int Size { get; set; } = 10; [JsonPropertyName("keyword")] public string? Keyword { 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; } }