Files
SPT-Server-Build/Core/Models/Spt/Server/DatabaseTables.cs
T

15 lines
467 B
C#

namespace Core.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; }
}