ln.skyspot/users/RegistrationType.cs

11 lines
145 B
C#
Raw Normal View History

2019-04-23 09:24:56 +02:00
using System;
namespace skyspot.users
{
public enum RegistrationType
{
SELFSERVICE,
OPERATOR,
MANAGED
}
}