mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
20 lines
203 B
C#
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;
|
|
}
|
|
}
|
|
}
|