LearnGodot/Config/AppConfig.cs
2026-01-02 23:35:05 +08:00

9 lines
152 B
C#

using Learn.Utils;
namespace Learn.Config;
[ConfigItem("APP")]
public class AppConfig : IConfigItem
{
public string ScanPath { get; set; } = "";
}