Created
December 11, 2019 01:54
-
-
Save tera-ny/8b09283119e2129e5ef8a80813f0dd7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@startuml models | |
class Article { | |
title: string | |
author: string | |
text: string | |
description: string | |
publishedAt: Date | |
imageURL: string | |
} | |
class Comment { | |
uid: string | |
id: string | |
text: string | |
likes: number | |
} | |
@enduml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment