1
0
Fork 0
forked from aly/qstbak
qstbak/SmartNav.Model/SmartNav.Model.Navigation/TeleportTicketFile.cs
2026-08-17 20:27:25 +10:00

8 lines
235 B
C#

using System.Collections.Generic;
namespace SmartNav.Model.Navigation;
public sealed class TeleportTicketFile
{
public Dictionary<string, TeleportTicketEntry> Tickets { get; set; } = new Dictionary<string, TeleportTicketEntry>();
}