namespace MusicPlayer { public class Album { public string albumnaam { get; set; } public Album(string albumnaam) { this.albumnaam = albumnaam; } } }