mirror of
https://github.com/bitwarden/server.git
synced 2025-04-24 06:25:09 -05:00
10 lines
235 B
C#
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; }
|
|
}
|
|
}
|