mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
19 lines
393 B
C#
19 lines
393 B
C#
using System.IO;
|
|
|
|
namespace CUETools.Processor
|
|
{
|
|
public class CUEToolsSourceFile
|
|
{
|
|
public string path;
|
|
public string contents;
|
|
public object data;
|
|
|
|
public CUEToolsSourceFile(string _path, TextReader reader)
|
|
{
|
|
path = _path;
|
|
contents = reader.ReadToEnd();
|
|
reader.Close();
|
|
}
|
|
}
|
|
}
|