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

14 lines
232 B
Dart

class NewsRequestArgs {
final int page;
final String? startDate;
final String? endDate;
final String? search;
const NewsRequestArgs({
required this.page,
this.startDate,
this.endDate,
this.search,
});
}