common/ProductionUiCordonel/ProductionProcesses/PopUpProcessLogArgs.cs
2026-04-23 17:50:07 +02:00

14 lines
270 B
C#

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