didvan-app/lib/models/requests/newstats_general.dart

14 lines
238 B
Dart

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,
});
}