18 lines
346 B
C#
18 lines
346 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CordonelAssemblyLine.Event
|
|
{
|
|
public class StringArgs : EventArgs
|
|
{
|
|
public readonly string Content;
|
|
public StringArgs(string content)
|
|
{
|
|
Content = content;
|
|
}
|
|
}
|
|
}
|