mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUETools.Processor: split classes into separate files.
This commit is contained in:
24
CUETools.Processor/TrackInfo.cs
Normal file
24
CUETools.Processor/TrackInfo.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user