sample_dart_sdk/lib/sdk/models/CategoryModel.dart

7 lines
77 B
Dart

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