Skip to content
Snippets Groups Projects
Commit a0277648 authored by Martin Gargalovič's avatar Martin Gargalovič
Browse files

added toString()

parent 28124591
No related branches found
No related tags found
1 merge request!12Mail module
......@@ -12,4 +12,12 @@ public class EmailDto {
this.content = content;
}
@Override
public String toString() {
return "EmailDto{" +
"sender='" + sender + '\'' +
", receiver='" + receiver + '\'' +
", content='" + content + '\'' +
'}';
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment