mirror of
https://github.com/bitwarden/server
synced 2025-12-24 20:23:21 +00:00
8 lines
152 B
C#
8 lines
152 B
C#
namespace Bit.Admin;
|
|
|
|
public class AdminSettings
|
|
{
|
|
public virtual string Admins { get; set; }
|
|
public int? DeleteTrashDaysAgo { get; set; }
|
|
}
|