using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.Common.Web
{
public enum LoginMethod
{
[Description("Active Directory")]
ActiveDirectory,
[Description("Standard User")]
StandardUser,
}
}