mirror of
https://github.com/theindianappguy/FlutterNewsApp.git
synced 2025-08-06 19:43:52 +08:00
16 lines
280 B
Dart
16 lines
280 B
Dart
class Article{
|
|
|
|
String title;
|
|
String author;
|
|
String description;
|
|
String urlToImage;
|
|
DateTime publshedAt;
|
|
String content;
|
|
String articleUrl;
|
|
|
|
Article({this.title,this.description,this.author,this.content,this.publshedAt,
|
|
this.urlToImage, this.articleUrl});
|
|
|
|
|
|
|
|
} |