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,
});
}