mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
17 lines
295 B
C#
17 lines
295 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace SDRSharp.FrequencyManager
|
||
|
|
{
|
||
|
|
public class MemoryInfoEventArgs : EventArgs
|
||
|
|
{
|
||
|
|
private readonly MemoryEntry _memoryEntry;
|
||
|
|
|
||
|
|
public MemoryEntry MemoryEntry => this._memoryEntry;
|
||
|
|
|
||
|
|
public MemoryInfoEventArgs(MemoryEntry entry)
|
||
|
|
{
|
||
|
|
this._memoryEntry = entry;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|