Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guilhermecarvalhocarneiro/7abb43a1769de38dfe1d5d3949920492 to your computer and use it in GitHub Desktop.
Save guilhermecarvalhocarneiro/7abb43a1769de38dfe1d5d3949920492 to your computer and use it in GitHub Desktop.
CommentModel.dart
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