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