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:
14
CUETools.Processor/CUEToolsProgressEventArgs.cs
Normal file
14
CUETools.Processor/CUEToolsProgressEventArgs.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace CUETools.Processor
|
||||
{
|
||||
public class CUEToolsProgressEventArgs : EventArgs
|
||||
{
|
||||
public string status = string.Empty;
|
||||
public double percent = 0.0;
|
||||
public int offset = 0;
|
||||
public string input = string.Empty;
|
||||
public string output = string.Empty;
|
||||
public CUESheet cueSheet;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user