class StatisticsGeneralRequestArgs { final int page; final String? q; final int? type; final int? categories; const StatisticsGeneralRequestArgs({ required this.page, this.categories, this.q, this.type, }); }