/
AstroJohn
/
MailRobot
Обзор
Документация
Войти
/
AstroJohn
/
MailRobot
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
LogProcessingModels/PrefixResolving/IPrefixResolver.cs
31 строка
815 B
AstroJohn
GetOblast GetTeam
11 апр 2026, 17:23
11 апр 2026, 17:23
8cd6106
Код
Авторство
О чём код?
using System.Collections.Generic; namespace LogProcessingModels.PrefixResolving { public interface IPrefixResolver { DxccPrefix ResolveDxccPrefix(string callsign, out string errorMessage, out string realCallsign, out string realPrefix); OblastPrefix ResolveOblastPrefix(string callsign); string GetOblast(string callsign); string GetTeam(string callsign); IList<DxccEntity> DxccEntities { get; } IList<DxccPrefix> DxccPrefixes { get; } IList<OblastEntity> OblastEntities { get; } IList<OblastPrefix> OblastPrefixes { get; } string CtyDatPath { get; set; } string OblDatPath { get; set; } bool IsSpLo(string callsign); bool IsSpLo(string callsign, out string countryId, out string oblId); } }