Add Log Source Identification to determine if a log has been created/updated from the UI/Other Applications
#29
This commit is contained in:
parent
a3432e0281
commit
4f4d247dc6
@ -11,6 +11,7 @@ namespace Interfaces
|
||||
public DateTimeOffset EventTime { get; set; }
|
||||
public int CalendarWeek { get; set; }
|
||||
public int Year { get; set; }
|
||||
public LogSource Source { get; set; }
|
||||
}
|
||||
|
||||
public enum LogDirection
|
||||
@ -19,4 +20,12 @@ namespace Interfaces
|
||||
IN = 1,
|
||||
OUT = 2
|
||||
}
|
||||
|
||||
public enum LogSource
|
||||
{
|
||||
UNKNOWN=0,
|
||||
IDENTIFIER=1,
|
||||
UI=2,
|
||||
TRAYAPP=3
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,10 @@
|
||||
namespace SQLiteRepository
|
||||
{
|
||||
public enum LogSourceDb
|
||||
{
|
||||
UNKNOWN=0,
|
||||
IDENTIFIER = 1,
|
||||
UI = 2,
|
||||
TRAYAPP = 3
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user