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