Files
Migu2.0/MiGu.Server/Configs/SystemConfig.cs
T

9 lines
182 B
C#
Raw Normal View History

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