LearnGodot/Config/AppConfig.cs
2026-01-16 11:40:08 +08:00

11 lines
202 B
C#

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