20 lines
355 B
Dart
20 lines
355 B
Dart
class StudioRequestArgs {
|
|
final int page;
|
|
final String? search;
|
|
final String? order;
|
|
final String? type;
|
|
final bool? asc;
|
|
final String? startDate;
|
|
final String? endDate;
|
|
|
|
const StudioRequestArgs({
|
|
required this.page,
|
|
this.asc,
|
|
this.search,
|
|
this.order,
|
|
this.type = 'video',
|
|
this.startDate,
|
|
this.endDate,
|
|
});
|
|
}
|