qstbak/SmartNav.Model/SmartNav.Model.Navigation/WarpDestinationOverrides.cs
2026-08-17 20:27:25 +10:00

10 lines
317 B
C#

using System.Collections.Generic;
namespace SmartNav.Model.Navigation;
public sealed class WarpDestinationOverrides
{
public List<uint> SkippedWarpIds { get; set; } = new List<uint>();
public Dictionary<string, WarpDestinationEntry> Destinations { get; set; } = new Dictionary<string, WarpDestinationEntry>();
}