19 lines
294 B
C#
19 lines
294 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XylExp.Data
|
|
{
|
|
public class Enum
|
|
{
|
|
public enum loginMode
|
|
{
|
|
ND = 0,
|
|
createNew,
|
|
retrieve
|
|
}
|
|
}
|
|
}
|