/
AstroJohn
/
MailRobot
Обзор
Документация
Войти
/
AstroJohn
/
MailRobot
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
LogProcessingModels/PrefixResolving/DxccEntity.cs
24 строки
687 B
AstroJohn
1st commit
11 сен 2024, 13:31
11 сен 2024, 13:31
0f57dc5
Код
Авторство
О чём код?
using System.Collections.Generic; namespace LogProcessingModels.PrefixResolving { public class DxccEntity { public DxccEntity() { Prefixes = new List<DxccPrefix>(); } public string CountryName { get; set; } public byte CQZone { get; set;} public byte ITUZone { get; set;} public string Continent { get; set; } public decimal Latitude { get; set; } public decimal Longitude { get; set;} public decimal TimeOffset { get; set;} public string PrimaryPrefix { get; set;} public bool IsWaedc { get; set; } public IList<DxccPrefix> Prefixes { get; set; } } }