namespace MusicPlayer { public class Year { public string year { get; set; } public Year(string year) { this.year = year; } } }