Added Java files

This commit is contained in:
Yorick
2015-02-10 12:16:44 +00:00
parent 5ae6465cc9
commit 14855f938d
4 changed files with 62 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import javax.swing.ImageIcon;
public class Artist
{
private String genre;
private String name;
private String description;
private ImageIcon image;
private int id;
public Artist()
{
}
}