Files
UnrealEngineUWP/Engine/Source/Programs/UnrealBuildTool/System/XmlConfigFileAttribute.cs
Juan Canada 2ecf4f9708 Merging //UE4/Dev-Main@10877709 to Dev-RenderPlat-Staging(//UE4/Dev-Rendering)
#rnx
#rb none

[CL 10895568 by Juan Canada in Dev-RenderPlat-Staging branch]
2020-01-07 13:45:01 -05:00

28 lines
692 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UnrealBuildTool
{
/// <summary>
/// Marks a field as being serializable from a config file
/// </summary>
[AttributeUsage(AttributeTargets.Field, AllowMultiple = true)]
class XmlConfigFileAttribute : Attribute
{
/// <summary>
/// The category for this config value. Optional; defaults to the declaring type name.
/// </summary>
public string Category = null;
/// <summary>
/// Name of the key to read. Optional; defaults to the field name.
/// </summary>
public string Name = null;
}
}