mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
25 lines
275 B
C#
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;
|
|
}
|
|
}
|
|
}
|