mirror of
https://github.com/bitwarden/server.git
synced 2026-02-05 16:43:14 +08:00
11 lines
245 B
C#
11 lines
245 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
namespace Bit.Admin;
|
|
|
|
public class AdminSettings
|
|
{
|
|
public virtual string Admins { get; set; }
|
|
public int? DeleteTrashDaysAgo { get; set; }
|
|
}
|