class StudioRequestArgs { final int page; final String? search; final String? order; final String? type; final bool? asc; const StudioRequestArgs({ required this.page, this.asc, this.search, this.order, this.type, }); }