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