first commit

This commit is contained in:
sokbunthean
2020-06-27 18:46:23 +07:00
commit de8d57ceec
77 changed files with 2243 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
class CatgoryModel {
final String title;
final int articleCount;
const CatgoryModel(
this.title,
this.articleCount
);
}