7 lines
233 B
C#
7 lines
233 B
C#
namespace Moonlight.Api.Configuration;
|
|
|
|
public class SettingsOptions
|
|
{
|
|
public TimeSpan LookupL1CacheTime { get; set; } = TimeSpan.FromMinutes(1);
|
|
public TimeSpan LookupL2CacheTime { get; set; } = TimeSpan.FromMinutes(5);
|
|
} |