mirror of https://github.com/ErsatzTV/ErsatzTV.git
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.
13 lines
432 B
13 lines
432 B
namespace ErsatzTV.Infrastructure.Metadata; |
|
|
|
public static class MetadataSongTag |
|
{ |
|
public const string Album = "album"; |
|
public const string Artist = "artist"; |
|
public const string AlbumArtist = "albumartist"; |
|
public const string Date = "date"; |
|
public const string Genre = "genre"; |
|
public const string Title = "title"; |
|
public const string Track = "track"; |
|
public const string Comment = "comment"; |
|
}
|
|
|