17 lines
378 B
Dart
17 lines
378 B
Dart
class ProductTest {
|
|
int productTestId;
|
|
int customerId;
|
|
int productId;
|
|
|
|
DateTime dateView;
|
|
bool purchaseClick;
|
|
|
|
ProductTest.fromJson(Map json) {
|
|
this.productTestId = json['productTestId'];
|
|
this.customerId = json['customerId'];
|
|
this.productId = json['productId'];
|
|
this.dateView = json['dateView'];
|
|
this.purchaseClick = json['purchaseClick'];
|
|
}
|
|
}
|