class InfographyRequestArgs {
final int page;
final String? q;
final List<int>? tag;
final List<int>? categories;
const InfographyRequestArgs({
required this.page,
this.categories,
this.q,
this.tag,
});
}