9 lines
201 B
Dart
9 lines
201 B
Dart
import 'package:youmazgestion/Components/paymentType.dart';
|
|
|
|
class PaymentMethod {
|
|
final PaymentType type;
|
|
final double amountGiven;
|
|
|
|
PaymentMethod({required this.type, this.amountGiven = 0});
|
|
}
|