mirror of
https://github.com/bitwarden/server
synced 2025-12-28 22:23:30 +00:00
10 lines
240 B
C#
10 lines
240 B
C#
namespace Bit.Icons
|
|
{
|
|
public class IconsSettings
|
|
{
|
|
public virtual string BestIconBaseUrl { get; set; }
|
|
public virtual int CacheHours { get; set; }
|
|
public virtual long? CacheSizeLimit { get; set; }
|
|
}
|
|
}
|