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