32 lines
619 B
C#
32 lines
619 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
|
|
namespace Users.Entities
|
|
{
|
|
/// <summary> Identifies the type of a database </summary>
|
|
public enum DBType
|
|
{
|
|
MySql, /// MySQL database
|
|
SQLite, /// SQLite
|
|
DbTypesCount,
|
|
}
|
|
|
|
/// <summary> Identifies the database based on the content </summary>
|
|
public enum DBKind
|
|
{
|
|
Config,
|
|
Results,
|
|
Count,
|
|
}
|
|
|
|
public enum LoginMethod
|
|
{
|
|
UserName, /// = alias, abbreviation
|
|
FullName, /// = description
|
|
Number,
|
|
Count
|
|
}
|
|
}
|