Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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!;
}
}