关联实际触发器对象的代码清理

This commit is contained in:
辉鸭蛋
2025-10-02 16:00:35 +08:00
parent d6bfa5f736
commit ef66e2ff75
6 changed files with 31 additions and 78 deletions

View File

@@ -0,0 +1,17 @@
using System.IO;
using BetterGenshinImpact.Core.Config;
namespace BetterGenshinImpact.Service.GearTask.Model;
/// <summary>
/// 存储定义任务的路径信息
/// </summary>
public class GearTaskPaths
{
private static readonly string TaskV2Path = Path.Combine(Global.Absolute("User"), "task_v2");
public static readonly string TaskListPath = Path.Combine(TaskV2Path, "list");
public static readonly string TaskTriggerPath = Path.Combine(TaskV2Path, "trigger");
}