mirror of
https://github.com/bitwarden/server
synced 2025-12-30 07:03:42 +00:00
9 lines
209 B
C#
9 lines
209 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; }
|
|
}
|