14 lines
369 B
C#
14 lines
369 B
C#
|
|
namespace FileShare_API.Services
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 文件库定时扫描后台服务配置。
|
||
|
|
/// </summary>
|
||
|
|
public sealed class FileLibraryScanOptions
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 后台服务检查到期文件库目录的轮询间隔分钟数。
|
||
|
|
/// </summary>
|
||
|
|
public int PollingIntervalMinutes { get; set; } = 1;
|
||
|
|
}
|
||
|
|
}
|