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