Files
UnrealEngine/Engine/Source/Programs/Horde/HordeServer.Shared/Configuration/ResolveSecretAttribute.cs
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

10 lines
309 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace HordeServer.Configuration;
/// <summary>
/// Convert a string representation of a secret to a concrete value during config updates
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public sealed class ResolveSecretAttribute : Attribute;