mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 10:04:24 +00:00
15 lines
368 B
C#
15 lines
368 B
C#
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;
|
|
}
|
|
}
|