系统配置可开关清理策略;日志管理页支持查看/保存清理选项。 Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
182 B
C#
9 lines
182 B
C#
namespace MiGu.Server.Configs;
|
|
|
|
public record SystemConfig
|
|
{
|
|
public LogCleanupOptions LogCleanup { get; init; } = new();
|
|
|
|
public static SystemConfig Default() => new();
|
|
}
|