You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Controller/Lyrics/Metadata.cs

55 lines
1.4 KiB

using System.Collections.Generic;
namespace MediaBrowser.Controller.Lyrics;
/// <summary>
/// Metadata model.
/// </summary>
public class Metadata
{
/// <summary>
/// Gets or sets Artist - [ar:The song artist].
/// </summary>
public string? Ar { get; set; }
/// <summary>
/// Gets or sets Album - [al:The album this song is on].
/// </summary>
public string? Al { get; set; }
/// <summary>
/// Gets or sets Title - [ti:The title of the song].
/// </summary>
public string? Ti { get; set; }
/// <summary>
/// Gets or sets Author - [au:Creator of the lyric data].
/// </summary>
public string? Au { get; set; }
/// <summary>
/// Gets or sets Length - [length:How long the song is].
/// </summary>
public string? Length { get; set; }
/// <summary>
/// Gets or sets By - [by:Creator of the LRC file].
/// </summary>
public string? By { get; set; }
/// <summary>
/// Gets or sets Offset - [offsec:+/- Timestamp adjustment in milliseconds].
/// </summary>
public string? Offset { get; set; }
/// <summary>
/// Gets or sets Creator - [re:The Software used to create the LRC file].
/// </summary>
public string? Re { get; set; }
/// <summary>
/// Gets or sets Version - [ve:The version of the Creator used].
/// </summary>
public string? Ve { get; set; }
}