mirror of
https://github.com/bitwarden/server.git
synced 2025-05-11 14:42:19 -05: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; }
|
|
}
|