1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-01-14 22:18:43 +00:00
MpcNET/LibMpc/Types/IMpdFile.cs

28 lines
695 B
C#
Raw Normal View History

2016-12-20 14:42:48 +00:00
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; }
2016-12-21 10:40:50 +00:00
IDictionary<string, string> UnknownMetadata { get; }
2016-12-20 14:42:48 +00:00
}
}