1
0
mirror of synced 2024-12-18 09:15:54 +01:00
GC-local-server-rewrite/Domain/Config/RelayConfig.cs

10 lines
214 B
C#
Raw Normal View History

namespace Domain.Config;
public class RelayConfig
{
public const string RELAY_SECTION = "Relay";
public string RelayServer { get; set; } = "127.0.0.1";
public int RelayPort { get; set; } = 3333;
}