SDRSharper/Plugins/SDRSharper.FrequencyManager/SDRSharp.FrequencyManager/MemoryInfoEventArgs.cs

17 lines
295 B
C#
Raw Normal View History

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;
}
}
}