mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-07 12:21:50 +08:00
10 lines
282 B
C#
10 lines
282 B
C#
using BetterGenshinImpact.GameTask.Model;
|
|
using System.Threading;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoGeniusInvokation;
|
|
|
|
public class GeniusInvokationTaskParam(string strategyContent) : BaseTaskParam
|
|
{
|
|
public string StrategyContent { get; set; } = strategyContent;
|
|
}
|