mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2026-03-09 22:43:52 +01:00
12 lines
110 B
C#
12 lines
110 B
C#
using System;
|
|
|
|
namespace SDRSharp.FrequencyEdit
|
|
{
|
|
public enum EntryMode
|
|
{
|
|
None,
|
|
Direct,
|
|
Arrow
|
|
}
|
|
}
|