mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-07 12:21:50 +08:00
22 lines
548 B
C#
22 lines
548 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BetterGenshinImpact.GameTask.AutoFight;
|
|
|
|
/// <summary>
|
|
/// 自动战斗配置
|
|
/// </summary>
|
|
[Serializable]
|
|
public partial class AutoFightConfig : ObservableObject
|
|
{
|
|
[ObservableProperty] private string _strategyName = "";
|
|
|
|
/// <summary>
|
|
/// 英文逗号分割 强制指定队伍角色
|
|
/// </summary>
|
|
[ObservableProperty] private string _teamNames = "";
|
|
} |