namespace ACE.Common
{
///
/// This section configures handling of client DAT patching from server's DAT files
///
public class DDDConfiguration
{
///
/// Allow server to patch client DAT files using server's DAT files via DDDManager
///
public bool EnableDATPatching { get; set; } = false;
///
/// Upon server startup, precache all DAT files that would be sent as compressed data
///
public bool PrecacheCompressedDATFiles { get; set; } = false;
}
}