enum PaymentStatus {
paid('paid'),
partial('partial'),
debt('debt');
final String status;
const PaymentStatus(this.status);
}