17 lines
313 B
Dart
17 lines
313 B
Dart
import 'package:pshared/models/money.dart';
|
|
|
|
|
|
class LedgerBalance {
|
|
final String ledgerAccountRef;
|
|
final Money? balance;
|
|
final int version;
|
|
final DateTime? lastUpdated;
|
|
|
|
const LedgerBalance({
|
|
required this.ledgerAccountRef,
|
|
this.balance,
|
|
required this.version,
|
|
this.lastUpdated,
|
|
});
|
|
}
|