first commit

This commit is contained in:
2026-02-07 15:57:09 +07:00
commit 157096f164
1153 changed files with 415766 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
class BusinessCategory {
final int id;
final String name;
final String description;
// Add other fields as needed
BusinessCategory({
required this.id,
required this.name,
required this.description,
});
factory BusinessCategory.fromJson(Map<String, dynamic> json) {
return BusinessCategory(
id: json['id'] ?? 0,
name: json['name'] ?? '',
description: json['description'] ?? '',
);
}
}