Testing/lib/models/category_model.dart

9 lines
136 B
Dart
Raw Normal View History

2020-06-27 18:46:23 +07:00
class CatgoryModel {
final String title;
final int articleCount;
const CatgoryModel(
this.title,
this.articleCount
);
}