mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
16 lines
235 B
C#
16 lines
235 B
C#
using System;
|
|
|
|
namespace SDRSharp.FrequencyEdit
|
|
{
|
|
public class FrequencyChangingEventArgs : EventArgs
|
|
{
|
|
public long Frequency { get; set; }
|
|
|
|
public bool Accept { get; set; }
|
|
|
|
public FrequencyChangingEventArgs()
|
|
{
|
|
}
|
|
}
|
|
}
|