6 lines
84 B
Dart
6 lines
84 B
Dart
class MyCategory {
|
|
String name;
|
|
String id;
|
|
|
|
MyCategory(this.name, this.id);
|
|
}
|