Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 632 Bytes

File metadata and controls

40 lines (33 loc) · 632 Bytes

Projeto RestFul Api na nuvem

classDiagram
    class User {
        String name
        Account account
        Feature[] features
        Card card
        News[] news
    }

    class Account {
        String number
        String agency
        Number balance
        Number limit
    }

    class Feature {
        String icon
        String description
    }

    class Card {
        String number
        Number limit
    }

    class News {
        String icon
        String description
    }

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

Loading