mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 16:13:12 +08:00
11 lines
219 B
C#
11 lines
219 B
C#
|
|
using Serilog.Events;
|
|||
|
|
|
|||
|
|
namespace Bit.Admin.Models
|
|||
|
|
{
|
|||
|
|
public class LogsModel : CursorPagedModel<LogModel>
|
|||
|
|
{
|
|||
|
|
public LogEventLevel? Level { get; set; }
|
|||
|
|
public string Project { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|