Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer.Shared/Configuration/ConfigMacro.cs
2025-05-18 13:04:45 +08:00

21 lines
422 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace HordeServer.Configuration
{
/// <summary>
/// Declares a config macro
/// </summary>
public class ConfigMacro
{
/// <summary>
/// Name of the macro property
/// </summary>
public string Name { get; set; } = String.Empty;
/// <summary>
/// Value for the macro property
/// </summary>
public string Value { get; set; } = String.Empty;
}
}