first commit

This commit is contained in:
2026-04-29 12:53:22 +07:00
commit e6a30eddd3
394 changed files with 16408 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
class BerkasModel {
BerkasModel({
required this.title,
required this.description,
});
final String title;
final String description;
}