13 lines
457 B
C#
13 lines
457 B
C#
namespace ErsatzTV.Infrastructure.Metadata;
|
|
|
|
public static class MetadataSongTag
|
|
{
|
|
public static readonly string Album = "album";
|
|
public static readonly string Artist = "artist";
|
|
public static readonly string AlbumArtist = "albumartist";
|
|
public static readonly string Date = "date";
|
|
public static readonly string Genre = "genre";
|
|
public static readonly string Title = "title";
|
|
public static readonly string Track = "track";
|
|
}
|