GUYCOM_FLUTTER/lib/Components/commandManagementComponents/PaymentMethod.dart
b.razafimandimbihery 525b09c81f scan code bar
2025-06-13 22:58:23 +03:00

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});
}