using CommandLine; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Web; namespace Tango.MachineStudio.Publisher.CLI { public class InfoOptions { [Option("env", HelpText = "Specifies the target environment.", Required = true)] public DeploymentSlot Environment { get; set; } } }