Добавьте файлы проекта.
This commit is contained in:
8
SQLVision.Services/Configuration/CacheOptions.cs
Normal file
8
SQLVision.Services/Configuration/CacheOptions.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace SQLVision.Services.Configuration;
|
||||
|
||||
public class CacheOptions
|
||||
{
|
||||
public bool Enabled { get; set; } = true;
|
||||
public int DurationMinutes { get; set; } = 10;
|
||||
public long MaxSizeBytes { get; set; } = 100 * 1024 * 1024; // 100MB
|
||||
}
|
||||
Reference in New Issue
Block a user