This commit is contained in:
Louis Farina 2020-11-30 14:55:34 +01:00
commit 80097cfc6b
4 changed files with 27 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 19 KiB

14
src/Message.java Normal file
View file

@ -0,0 +1,14 @@
public class Message {
private String msg = null;
public void setmsg(String msg)
{
this.msg = msg;
}
public String getmsg()
{
return msg;
}
}

13
src/User.java Normal file
View file

@ -0,0 +1,13 @@
public class User {
private String pseudo = null;
public void setpseudo(String pseudo)
{
this.pseudo = pseudo;
}
public String getpseudo()
{
return pseudo;
}
}