Testing/lib/models/category_model.dart
2020-06-27 18:46:23 +07:00

9 lines
136 B
Dart

class CatgoryModel {
final String title;
final int articleCount;
const CatgoryModel(
this.title,
this.articleCount
);
}