using System; namespace Aurora.Frontend.Views.Songs { public class Song { public Song() { } /// /// The title of the song. /// /// public string Title { get; set; } /// /// The artist of the song. /// /// public string Artist { get; set; } /// /// The album from which the song belongs. /// /// public string Album { get; set; } /// /// The duration of the song. /// /// public string Duration { get; set; } /// /// Extra data associated with a song. /// /// public object Metadata { get; set; } } }