1
0
mirror of https://github.com/bitwarden/server synced 2025-12-26 13:13:24 +00:00
Files
server/src/Icons/IconsSettings.cs
2018-06-18 08:31:37 -04:00

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