Files
SPT-Server-Build/Core/Models/Spt/Server/DatabaseTables.cs
T
2025-01-06 21:49:53 +00:00

17 lines
521 B
C#

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