14 lines
270 B
C#
14 lines
270 B
C#
using System;
|
|
|
|
namespace ProductionUiCordonelLegacy.ProductionProcesses
|
|
{
|
|
public class PopUpProcessLogArgs : EventArgs
|
|
{
|
|
public readonly String Data;
|
|
public PopUpProcessLogArgs(String text)
|
|
{
|
|
Data = text;
|
|
}
|
|
}
|
|
}
|