convert Pilz.IO to C# & Add EmbeddedFilesContainer
This commit is contained in:
14
Pilz.IO/EventArgs/DataEventargs.cs
Normal file
14
Pilz.IO/EventArgs/DataEventargs.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace Pilz.IO
|
||||
{
|
||||
public class DataEventArgs : EventArgs
|
||||
{
|
||||
public readonly byte[] Data;
|
||||
|
||||
public DataEventArgs(byte[] bytes) : base()
|
||||
{
|
||||
Data = bytes;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user