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

10 lines
215 B
C#

using Learn.Utils;
namespace Learn.Config;
[ConfigItem("TMDBParser")]
public class TMDBParserConfig : IConfigItem
{
public string HttpProxy { get; set; } = "";
public string ApiKey { get; set; } = "";
}