1
0
mirror of https://github.com/bitwarden/server synced 2026-01-08 11:33:26 +00:00

date range search on logs

This commit is contained in:
Kyle Spearrin
2019-10-01 09:02:36 -04:00
parent b99f6cdbc1
commit 47fed7ab80
3 changed files with 17 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
using Serilog.Events;
using System;
using Serilog.Events;
namespace Bit.Admin.Models
{
@@ -6,5 +7,7 @@ namespace Bit.Admin.Models
{
public LogEventLevel? Level { get; set; }
public string Project { get; set; }
public DateTime? Start { get; set; }
public DateTime? End { get; set; }
}
}