ARRL DX, IARU HF, Sweepstakes, RTTY Roundup, NAQP and general logging join CQ WW and CQ WPX. The Cabrillo QSO line is now built column by column by the contest, because Sweepstakes puts the callsign after the serial number where everyone else puts it first. User-defined contests read the subset of N1MM's .udc settings that covers the exchange, the dupe rule, points and up to three multipliers. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
22 lines
431 B
C#
22 lines
431 B
C#
namespace Nonemm.Contests;
|
|
|
|
/// When a station may be worked again.
|
|
public enum DupeScope
|
|
{
|
|
/// Once in the whole contest.
|
|
Once,
|
|
|
|
/// Once per band, whatever the mode.
|
|
PerBand,
|
|
|
|
/// Once per band and mode.
|
|
PerBandAndMode,
|
|
|
|
/// Once per mode, whatever the band.
|
|
PerMode,
|
|
|
|
/// Never a dupe: the same station may be worked again straight away, which
|
|
/// the sprint contests allow.
|
|
Never,
|
|
}
|