mirror of
https://github.com/bitwarden/server.git
synced 2025-03-01 04:01:11 +01: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; }
|
|
}
|