Files
2025-05-18 13:04:45 +08:00

14 lines
263 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma warning disable CS1591
namespace UnrealToolbox.Plugins.HordeProxy
{
[Serializable]
public class HordeProxySettings
{
public bool Enabled { get; set; }
public int Port { get; set; } = 13344;
}
}