14 lines
250 B
C#
14 lines
250 B
C#
using System;
|
|
|
|
namespace ProductionUiCordonelLegacy.Event
|
|
{
|
|
public class StringArgs : EventArgs
|
|
{
|
|
public readonly String Content;
|
|
public StringArgs(String content)
|
|
{
|
|
Content = content;
|
|
}
|
|
}
|
|
}
|