Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 689 Bytes

README.md

File metadata and controls

43 lines (34 loc) · 689 Bytes

Santander Back End 2024

diagrama de classes

classDiagram
    class User {
        - String name
        - Account account
        - List~Feature~ features
        - Card card
        - List~News~ news
    }

    class Account {
        - String number
        - String agency
        - float balance
        - float limit
    }

    class Feature {
        - String icon
        - String description
    }

    class Card {
        - String number
        - float limit
    }

    class News {
        - String icon
        - String description
    }

    User "1" *-- "1" Account 
    User "1" *-- "N" Feature 
    User "1" *-- "1" Card 
    User "1" *-- "N" News
Loading