2026-05-29 18:16:34 +08:00
|
|
|
namespace MiGu.Server.Configs;
|
|
|
|
|
|
2026-08-26 17:48:25 +08:00
|
|
|
public record SystemConfig
|
2026-05-29 18:16:34 +08:00
|
|
|
{
|
2026-08-26 17:48:25 +08:00
|
|
|
public LogCleanupOptions LogCleanup { get; init; } = new();
|
|
|
|
|
|
|
|
|
|
public static SystemConfig Default() => new();
|
2026-05-29 18:16:34 +08:00
|
|
|
}
|