mirror of
https://github.com/ZetaKebab/MpcNET.git
synced 2025-01-14 22:18:43 +00:00
28 lines
691 B
C#
28 lines
691 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|