diff --git a/LibMpc/Types/IMpdFile.cs b/LibMpc/Types/IMpdFile.cs index 2c2ed69..7507d65 100644 --- a/LibMpc/Types/IMpdFile.cs +++ b/LibMpc/Types/IMpdFile.cs @@ -23,6 +23,6 @@ namespace LibMpc.Types int Disc { get; } int Pos { get; } int Id { get; } - IDictionary UnknownTags { get; } + IDictionary UnknownMetadata { get; } } } \ No newline at end of file diff --git a/LibMpc/Types/MpdFile.cs b/LibMpc/Types/MpdFile.cs index fc4023d..7c9a3ca 100644 --- a/LibMpc/Types/MpdFile.cs +++ b/LibMpc/Types/MpdFile.cs @@ -22,7 +22,7 @@ namespace LibMpc.Types private const string TagPos = "Pos"; private const string TagId = "Id"; - private readonly IDictionary _unknownTags = new Dictionary(); + private readonly IDictionary _unknownMetadata = new Dictionary(); internal MpdFile(string file) { @@ -46,7 +46,7 @@ namespace LibMpc.Types public int Disc { get; private set; } = -1; public int Pos { get; private set; } = -1; public int Id { get; private set; } = -1; - public IDictionary UnknownTags => _unknownTags; + public IDictionary UnknownMetadata => _unknownMetadata; internal void AddTag(string tag, string value) { @@ -95,7 +95,7 @@ namespace LibMpc.Types Id = int.Parse(value); break; default: - _unknownTags.Add(tag, value); + _unknownMetadata.Add(tag, value); break; } }