mirror of
https://github.com/chenasraf/pantry-flutter.git
synced 2026-05-17 17:28:03 +00:00
44 lines
1010 B
Dart
44 lines
1010 B
Dart
class Category {
|
|
final int id;
|
|
final int houseId;
|
|
final String name;
|
|
final String icon;
|
|
final String color;
|
|
final int sortOrder;
|
|
final int createdAt;
|
|
final int updatedAt;
|
|
|
|
const Category({
|
|
required this.id,
|
|
required this.houseId,
|
|
required this.name,
|
|
required this.icon,
|
|
required this.color,
|
|
required this.sortOrder,
|
|
required this.createdAt,
|
|
required this.updatedAt,
|
|
});
|
|
|
|
factory Category.fromJson(Map<String, dynamic> json) => Category(
|
|
id: json['id'] as int,
|
|
houseId: json['houseId'] as int,
|
|
name: json['name'] as String,
|
|
icon: json['icon'] as String,
|
|
color: json['color'] as String,
|
|
sortOrder: json['sortOrder'] as int,
|
|
createdAt: json['createdAt'] as int,
|
|
updatedAt: json['updatedAt'] as int,
|
|
);
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
'id': id,
|
|
'houseId': houseId,
|
|
'name': name,
|
|
'icon': icon,
|
|
'color': color,
|
|
'sortOrder': sortOrder,
|
|
'createdAt': createdAt,
|
|
'updatedAt': updatedAt,
|
|
};
|
|
}
|