2021-10-01 09:09:20 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CordonelAssemblyLine.Event
|
|
|
|
|
|
{
|
|
|
|
|
|
public class StringArgs : EventArgs
|
|
|
|
|
|
{
|
2022-10-19 10:58:08 +00:00
|
|
|
|
public readonly String Content;
|
|
|
|
|
|
public StringArgs(String content)
|
2021-10-01 09:09:20 +00:00
|
|
|
|
{
|
|
|
|
|
|
Content = content;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2024-02-12 14:18:19 +00:00
|
|
|
|
|
|
|
|
|
|
public class StringPressureArgs : EventArgs
|
|
|
|
|
|
{
|
|
|
|
|
|
public readonly bool NeedPressure;
|
|
|
|
|
|
public readonly String Content;
|
|
|
|
|
|
public StringPressureArgs(String content, bool needPressure = false)
|
|
|
|
|
|
{
|
|
|
|
|
|
Content = content;
|
|
|
|
|
|
NeedPressure = needPressure;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2021-10-01 09:09:20 +00:00
|
|
|
|
}
|