SDRSharper/SDRSharper.PanView/SDRSharp.PanView/FrequencyEventArgs.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

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