1
0
mirror of https://github.com/bitwarden/server synced 2025-12-30 07:03:42 +00:00
Files
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; }
}