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

19 lines
480 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.ComponentModel.DataAnnotations;
namespace HordeServer.Configuration
{
/// <summary>
/// Directive to merge config data from another source
/// </summary>
public class ConfigInclude
{
/// <summary>
/// Path to the config data to be included. May be relative to the including file's location.
/// </summary>
[Required, ConfigInclude, ConfigRelativePath]
public string Path { get; set; } = null!;
}
}