kodelog/lib/utils/my_category.dart

6 lines
84 B
Dart

class MyCategory {
String name;
String id;
MyCategory(this.name, this.id);
}