using System; namespace Aurora.Backend.Models.Media { public class AudioMetadata : BaseMetadata { public void AutioMetadata() { } /// /// 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; } } }