Files
ben marsh ca440b75cc Horde: Moving more types into HordeServer.Shared.
#rnx

[CL 34594752 by ben marsh in ue5-main branch]
2024-06-22 18:00:27 -04: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!;
}
}