mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-01-02 06:29:56 +01:00
21 lines
232 B
C#
21 lines
232 B
C#
using SDRSharp.Radio;
|
|
using System;
|
|
|
|
namespace SDRSharp.SDRIQ
|
|
{
|
|
public sealed class SamplesAvailableEventArgs : EventArgs
|
|
{
|
|
public int Length
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public unsafe Complex* Buffer
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|