11 lines
271 B
Dart
11 lines
271 B
Dart
|
|
import 'package:guru_app/financial/data/db/order_database.dart';
|
||
|
|
import 'package:guru_app/financial/product/product_model.dart';
|
||
|
|
|
||
|
|
/// Created by Haoyi on 6/1/21
|
||
|
|
|
||
|
|
class Asset {
|
||
|
|
final ProductId productId;
|
||
|
|
final OrderEntity order;
|
||
|
|
|
||
|
|
Asset(this.productId, this.order);
|
||
|
|
}
|