Created
April 27, 2020 18:45
-
-
Save guilhermecarvalhocarneiro/7abb43a1769de38dfe1d5d3949920492 to your computer and use it in GitHub Desktop.
CommentModel.dart
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
class CommentModel { | |
int id; | |
UsuarioModel userData; | |
String message; | |
String date; | |
int post; | |
int user; | |
bool rocketIt; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment