mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-13 20:43:31 +08:00
10 lines
316 B
C#
10 lines
316 B
C#
using System.Threading;
|
|
using BetterGenshinImpact.GameTask.Model;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoGeniusInvokation;
|
|
|
|
public class GeniusInvokationTaskParam(CancellationTokenSource cts, string strategyContent) : BaseTaskParam(cts)
|
|
{
|
|
public string StrategyContent { get; set; } = strategyContent;
|
|
}
|