mirror of
https://github.com/bitwarden/server.git
synced 2025-04-27 15:52:13 -05:00
12 lines
277 B
C#
12 lines
277 B
C#
using Serilog.Events;
|
|
|
|
namespace Bit.Admin.Models;
|
|
|
|
public class LogsModel : CursorPagedModel<LogModel>
|
|
{
|
|
public LogEventLevel? Level { get; set; }
|
|
public string Project { get; set; }
|
|
public DateTime? Start { get; set; }
|
|
public DateTime? End { get; set; }
|
|
}
|