mirror of
https://git.neonteam.dev/amizing/FreeSR.git
synced 2025-03-12 03:36:21 -04:00
14 lines
388 B
C#
14 lines
388 B
C#
namespace FreeSR.Dispatch
|
|
{
|
|
using FreeSR.Database.Configuration;
|
|
using FreeSR.Dispatch.Configuration;
|
|
using FreeSR.Shared.Configuration;
|
|
|
|
internal class DispatchServerConfiguration
|
|
{
|
|
public NetworkConfiguration Network { get; set; }
|
|
public DatabaseConfiguration Database { get; set; }
|
|
public RegionConfiguration Region { get; set; }
|
|
}
|
|
}
|