mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-06 11:55:31 +08:00
17 lines
522 B
C#
17 lines
522 B
C#
using System.Threading;
|
|
using BetterGenshinImpact.GameTask.Model;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoGeniusInvokation;
|
|
|
|
public class GeniusInvokationTaskParam : BaseTaskParam
|
|
{
|
|
public string StrategyContent { get; set; }
|
|
|
|
public TaskTriggerDispatcher Dispatcher { get; set; }
|
|
|
|
public GeniusInvokationTaskParam(CancellationTokenSource cts, TaskTriggerDispatcher dispatcher, string strategyContent) : base(cts)
|
|
{
|
|
StrategyContent = strategyContent;
|
|
Dispatcher = dispatcher;
|
|
}
|
|
} |