using System;
namespace Aurora.Models.Media
{
public class AudioMetadata : BaseMetadata
public void AutioMetadata()
}
/// <summary>
/// The title of the song.
/// </summary>
/// <value></value>
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; }