blob: 83f1c08507d723a6de1df9a937a2ee7f13a6b4b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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,
}
}
|