mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-06 07:00:16 -06:00
18 lines
587 B
C#
18 lines
587 B
C#
namespace FileFlows.MusicNodes
|
|
{
|
|
public class MusicInfo
|
|
{
|
|
public string Language { get; set; }
|
|
public int Track { get; set; }
|
|
public string Title { get; set; }
|
|
public string Album { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public string[] Genres { get; set; }
|
|
public string Encoder { get; set; }
|
|
public long Duration { get; set; }
|
|
public long BitRate { get; set; }
|
|
public string Codec { get; set; }
|
|
public long Channels { get; set; }
|
|
public long Frequency { get; set; }
|
|
}
|
|
} |