mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
39 lines
447 B
C#
39 lines
447 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 BandType Side
|
|
{
|
|
get;
|
|
private set;
|
|
}
|
|
|
|
public BandwidthEventArgs(int bandwidth, int offset, BandType side)
|
|
{
|
|
this.Bandwidth = bandwidth;
|
|
this.Offset = offset;
|
|
this.Side = side;
|
|
}
|
|
}
|
|
}
|