// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BuildAgent
{
///
/// Attribute used to specify names of program modes, and help text
///
class ProgramModeAttribute : Attribute
{
///
/// Name of the program mode, which needs to be specified on the command line to execute it
///
public string Name;
///
/// Short description for the mode. Will be displayed in the help text.
///
public string Description;
///
/// Constructor
///
/// Name of the mode
/// Short description for display in the help text
public ProgramModeAttribute(string Name, string Description)
{
this.Name = Name;
this.Description = Description;
}
}
}