1
0
mirror of https://github.com/bitwarden/server synced 2026-01-02 00:23:40 +00:00
Files
server/src/Admin/AdminSettings.cs
2025-07-08 10:25:59 -04:00

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; }
}