mirror of
https://github.com/Shchoholiev/shopping-assistant-mobile-client.git
synced 2025-04-04 16:49:37 +00:00
22 lines
426 B
Dart
22 lines
426 B
Dart
class Wishlist {
|
|
Wishlist(
|
|
{required this.id,
|
|
required this.name,
|
|
required this.type,
|
|
required this.createdById});
|
|
|
|
String id;
|
|
|
|
String name;
|
|
|
|
String type;
|
|
|
|
String createdById;
|
|
|
|
Wishlist.fromJson(Map<String, dynamic> json)
|
|
: id = json['id'] as String,
|
|
name = json['name'] as String,
|
|
type = json['type'] as String,
|
|
createdById = json['createdById'] as String;
|
|
}
|