mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
Tags updated
This commit is contained in:
parent
74061bdab4
commit
cbbf46f877
@ -1,5 +1,8 @@
|
|||||||
namespace LibMpc
|
namespace LibMpc
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// https://www.musicpd.org/doc/protocol/tags.html
|
||||||
|
/// </summary>
|
||||||
public class Tags
|
public class Tags
|
||||||
{
|
{
|
||||||
internal class Tag : ITag
|
internal class Tag : ITag
|
||||||
@ -12,10 +15,12 @@ namespace LibMpc
|
|||||||
public string Value { get; }
|
public string Value { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public ITag Any { get; } = new Tag("any");
|
public ITag Artist { get; } = new Tag("artist");
|
||||||
public ITag Filename { get; } = new Tag("filename");
|
public ITag ArtistSort { get; } = new Tag("artistsort");
|
||||||
public ITag Artist { get; }= new Tag("artist");
|
public ITag Album { get; } = new Tag("album");
|
||||||
public ITag Album { get; }= new Tag("album");
|
public ITag AlbumSort { get; } = new Tag("albumsort");
|
||||||
|
public ITag AlbumArtist { get; } = new Tag("albumartist");
|
||||||
|
public ITag AlbumArtistSort { get; } = new Tag("albumartistsort");
|
||||||
public ITag Title { get; } = new Tag("title");
|
public ITag Title { get; } = new Tag("title");
|
||||||
public ITag Track { get; } = new Tag("track");
|
public ITag Track { get; } = new Tag("track");
|
||||||
public ITag Name { get; } = new Tag("name");
|
public ITag Name { get; } = new Tag("name");
|
||||||
|
Loading…
Reference in New Issue
Block a user