7 lines
165 B
C#
7 lines
165 B
C#
namespace Moonlight.Api.Configuration;
|
|
|
|
public class FrontendOptions
|
|
{
|
|
public bool Enabled { get; set; } = true;
|
|
public int CacheMinutes { get; set; } = 3;
|
|
} |