mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-19 08:19:48 +08:00
19 lines
444 B
C#
19 lines
444 B
C#
using BetterGenshinImpact.Core.Config;
|
|
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using System;
|
|
|
|
namespace BetterGenshinImpact.Core.Script.Group;
|
|
|
|
[Serializable]
|
|
public partial class ScriptGroupConfig : ObservableObject
|
|
{
|
|
[ObservableProperty]
|
|
private PathingPartyConfig _pathingConfig = new();
|
|
|
|
/// <summary>
|
|
/// Shell 执行配置
|
|
/// </summary>
|
|
[ObservableProperty]
|
|
private ShellConfig _shellConfig = new();
|
|
}
|