Files
Nonemm/src/Nonemm.Spotting/Spot.cs
Erik ffeeb2cdc1 Add the session, radio control, bandmap and cluster
Nonemm.Session holds what the operator is typing, what the log says about it and
what happens on Enter, with no UI toolkit behind it. Nonemm.Rig talks to
hamlib's rigctld and reconnects on its own. Nonemm.Spotting reads DX cluster
lines into a bandmap that drops spots after an hour.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-27 10:39:53 +00:00

16 lines
304 B
C#

using Nonemm.Core;
namespace Nonemm.Spotting;
/// One station on the bandmap.
public sealed record Spot(
Callsign Call,
Frequency Frequency,
DateTime AtUtc,
SpotSource Source,
string Spotter = "",
string Comment = "")
{
public Band? Band => Bands.ForFrequency(Frequency);
}