moved LogDirectionDB to its own file and renamed to LogDirectionDb
9 lines
129 B
C#
9 lines
129 B
C#
namespace SQLiteRepository
|
|
{
|
|
public enum LogDirectionDb
|
|
{
|
|
UNKNOWN = 0,
|
|
IN = 1,
|
|
OUT = 2
|
|
}
|
|
} |