1
0
mirror of https://github.com/bitwarden/server.git synced 2025-03-01 04:01:11 +01:00
bitwarden-server/src/Icons/IconsSettings.cs
2022-08-29 16:06:55 -04:00

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