mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-30 10:19:51 +08:00
15 lines
403 B
C#
15 lines
403 B
C#
using BetterGenshinImpact.GameTask.Model;
|
|
using System.Threading;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoGeniusInvokation;
|
|
|
|
public class GeniusInvokationTaskParam : BaseTaskParam<AutoGeniusInvokationTask>
|
|
{
|
|
public GeniusInvokationTaskParam(string strategyContent) : base(null, null)
|
|
{
|
|
this.StrategyContent = strategyContent;
|
|
}
|
|
|
|
public string StrategyContent { get; set; }
|
|
}
|