1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-24 06:25:09 -05:00
bitwarden/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; }
}
}