Files
SPT-Server-Build/Core/Models/Spt/Server/DatabaseTables.cs
T
2025-01-05 20:28:54 +00:00

15 lines
468 B
C#

namespace Types.Models.Spt.Server;
public class DatabaseTables
{
public Bots? bots { get; }
public Hideout? hideout { get; }
public LocaleBase? locales { get; }
public Locations? locations { get; }
public Match? match { get; }
public Templates? templates { get; }
public Dictionary<string, Trader>? traders { get; }
public Globals? globals { get; }
public ServerBase? server { get; }
public SettingsBase? settings { get; }
}