Skip to content

Commit

Permalink
Create payments.mermaid
Browse files Browse the repository at this point in the history
  • Loading branch information
amr080 authored Feb 1, 2025
1 parent 9b0ab89 commit cd5ad31
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions docs/payments.mermaid
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
classDiagram
class FinancialNetwork {
+processWithdrawal()
+processDeposit()
}

class Payer {
+makePayment()
+withdrawMoney()
}

class Payee {
+receivePayment()
+depositMoney()
}

Payer --> FinancialNetwork : Withdrawal
Payee --> FinancialNetwork : Deposit
Payer --> Payee : Payment

0 comments on commit cd5ad31

Please sign in to comment.