SDRSharp/SDRSharp.Common/SDRSharp.Common/ByteSamplesEventArgs.cs
2018-03-24 23:01:41 -07:00

20 lines
203 B
C#

using System;
namespace SDRSharp.Common
{
public sealed class ByteSamplesEventArgs : EventArgs
{
public int Length
{
get;
set;
}
public unsafe byte* Buffer
{
get;
set;
}
}
}