mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-07-02 00:57:38 +00:00
Bug in find command fixed.
This commit is contained in:
28
LibMpc/Types/IMpdFile.cs
Normal file
28
LibMpc/Types/IMpdFile.cs
Normal file
@ -0,0 +1,28 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace LibMpc.Types
|
||||
{
|
||||
public interface IMpdFilePath
|
||||
{
|
||||
string File { get; }
|
||||
}
|
||||
|
||||
public interface IMpdFile : IMpdFilePath
|
||||
{
|
||||
int Time { get; }
|
||||
string Album { get; }
|
||||
string Artist { get; }
|
||||
string Title { get; }
|
||||
string Track { get; }
|
||||
string Name { get; }
|
||||
string Genre { get; }
|
||||
string Date { get; }
|
||||
string Composer { get; }
|
||||
string Performer { get; }
|
||||
string Comment { get; }
|
||||
int Disc { get; }
|
||||
int Pos { get; }
|
||||
int Id { get; }
|
||||
IDictionary<string, string> UnknownTags { get; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user