mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2026-04-05 22:45:20 +00:00
24 lines
275 B
C#
24 lines
275 B
C#
using System;
|
|
|
|
namespace SDRSharp.PanView
|
|
{
|
|
public class FrequencyEventArgs : EventArgs
|
|
{
|
|
public long Frequency
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool Cancel
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public FrequencyEventArgs(long frequency)
|
|
{
|
|
this.Frequency = frequency;
|
|
}
|
|
}
|
|
}
|