mirror of
https://github.com/bitwarden/server
synced 2025-12-26 13:13:24 +00:00
10 lines
235 B
C#
10 lines
235 B
C#
namespace Bit.Icons
|
|
{
|
|
public class IconsSettings
|
|
{
|
|
public virtual bool CacheEnabled { get; set; }
|
|
public virtual int CacheHours { get; set; }
|
|
public virtual long? CacheSizeLimit { get; set; }
|
|
}
|
|
}
|