forked from aly/qstbak
8 lines
235 B
C#
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>();
|
|
}
|