Files

9 lines
182 B
C#
Raw Permalink Normal View History

namespace MiGu.Server.Configs;
public record SystemConfig
{
public LogCleanupOptions LogCleanup { get; init; } = new();
public static SystemConfig Default() => new();
}