mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
32 lines
355 B
C#
32 lines
355 B
C#
using System;
|
|
|
|
namespace SDRSharp.PanView
|
|
{
|
|
public class BandwidthEventArgs : EventArgs
|
|
{
|
|
public int Bandwidth
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int Offset
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool Cancel
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public BandwidthEventArgs(int bandwidth, int offset)
|
|
{
|
|
this.Bandwidth = bandwidth;
|
|
this.Offset = offset;
|
|
}
|
|
}
|
|
}
|