mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
25 lines
481 B
C#
25 lines
481 B
C#
using System.Collections.Generic;
|
|
|
|
namespace CUETools.Processor
|
|
{
|
|
public class TrackInfo
|
|
{
|
|
private List<CUELine> _attributes;
|
|
public TagLib.File _fileInfo;
|
|
|
|
public List<CUELine> Attributes
|
|
{
|
|
get
|
|
{
|
|
return _attributes;
|
|
}
|
|
}
|
|
|
|
public TrackInfo()
|
|
{
|
|
_attributes = new List<CUELine>();
|
|
_fileInfo = null;
|
|
}
|
|
}
|
|
}
|