Advertisement
Guest User

Untitled

a guest
Jan 26th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. participant Player identified by playerId {
  2. o String playerId
  3. o String firstName
  4. o String lastName
  5. o Double balance
  6. }
  7.  
  8. participant Casino identified by casinoId {
  9. o String casinoId
  10. o Double balance
  11. }
  12.  
  13. transaction Bet {
  14. o Double amount
  15. o Integer number
  16. --> Casino casino
  17. --> Player player
  18. }
  19.  
  20. event WinNotification {
  21. o Double amountWon
  22. o Double bet
  23. o Integer number
  24. --> Player player
  25. }
  26.  
  27. event LoseNotification {
  28. o Double bet
  29. o Integer betNumber
  30. o Integer winningNumber
  31. --> Player player
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement