Added some fields to stubs

This commit is contained in:
Yorick Rommers
2015-10-15 13:55:42 +02:00
parent f643ff2967
commit eb5e1254b0
2 changed files with 9 additions and 4 deletions
+4 -2
View File
@@ -2,9 +2,11 @@
{
public class Album
{
public Album()
public string albumnaam { get; set; }
public Album(string albumnaam)
{
this.albumnaam = albumnaam;
}
}
}
+5 -2
View File
@@ -2,9 +2,12 @@
{
public class Artist
{
public Artist()
public string naam { get; set; }
public Artist(string naam)
{
this.naam = naam;
}
}
}