14 lines
263 B
C#
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;
|
|
}
|
|
}
|