Files
laatzen/Common/ProductionUiCordonel/ProductionProcesses/PopUpProcessLogArgs.cs
T

14 lines
264 B
C#

using System;
namespace ProductionUiCordonel.ProductionProcesses
{
public class PopUpProcessLogArgs : EventArgs
{
public readonly String Data;
public PopUpProcessLogArgs(String text)
{
Data = text;
}
}
}