1
0
mirror of https://github.com/bitwarden/server synced 2025-12-28 22:23:30 +00:00
Files
server/src/Icons/IconsSettings.cs
2017-10-09 14:54:32 -04:00

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; }
}
}