Files
Samuele Locatelli 94c89e3bf2 Update pagina login
2022-07-21 17:33:30 +02:00

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
}
}
}